Added Model namespace

This commit is contained in:
kdeng00
2019-09-01 13:54:16 -04:00
parent 1255aa0ff7
commit d44a5bb1bc
19 changed files with 131 additions and 205 deletions
+4 -4
View File
@@ -13,12 +13,12 @@ class song_manager
public:
song_manager(std::string&);
void saveSong(Song&);
void deleteSong(Song&);
void saveSong(Model::Song&);
void deleteSong(Model::Song&);
static void printSong(const Song&);
static void printSong(const Model::Song&);
private:
void saveSongTemp(Song&);
void saveSongTemp(Model::Song&);
std::string exe_path;
};