16 lines
166 B
C++
16 lines
166 B
C++
#ifndef PATHTYPE_H_
|
|
#define PATHTYPE_H_
|
|
|
|
namespace type
|
|
{
|
|
enum PathType
|
|
{
|
|
music = 0,
|
|
archive,
|
|
temp,
|
|
coverArt
|
|
};
|
|
}
|
|
|
|
#endif
|