26 lines
350 B
C++
26 lines
350 B
C++
#ifndef SONGMANAGER_H_
|
|
#define SONGMANAGER_H_
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
#include "models/models.h"
|
|
|
|
class song_manager
|
|
{
|
|
public:
|
|
song_manager(std::string&);
|
|
|
|
void saveSong(Song&);
|
|
|
|
static void printSong(const Song&);
|
|
private:
|
|
void saveSongTemp(Song&);
|
|
|
|
std::string exe_path;
|
|
};
|
|
|
|
#endif
|