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