15 lines
182 B
C++
15 lines
182 B
C++
#ifndef SONGCHANGED_H_
|
|
#define SONGCHANGED_H_
|
|
|
|
namespace type {
|
|
enum SongChanged {
|
|
title = 0,
|
|
artist,
|
|
album,
|
|
genre,
|
|
year
|
|
};
|
|
}
|
|
|
|
#endif
|