LibraryViewer
This commit is contained in:
parent
f6ba86aff8
commit
dd71eba0ec
24 changed files with 226111 additions and 36 deletions
31
LibraryViewer/public/LibraryViewer.hpp
Normal file
31
LibraryViewer/public/LibraryViewer.hpp
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
#pragma once
|
||||
|
||||
#include "Window.hpp"
|
||||
|
||||
namespace tp {
|
||||
extern ModuleManifest gModuleLibraryViewer;
|
||||
}
|
||||
|
||||
class Track {
|
||||
public:
|
||||
Track() = default;
|
||||
|
||||
public:
|
||||
tp::String mName = "undef";
|
||||
tp::String mArtist = "undef";
|
||||
};
|
||||
|
||||
class Library {
|
||||
public:
|
||||
Library() = default;
|
||||
|
||||
public:
|
||||
bool loadJson(const tp::String& path);
|
||||
|
||||
public:
|
||||
tp::Buffer<Track> mTraks;
|
||||
};
|
||||
|
||||
class LibraryViewverGui {};
|
||||
|
||||
void runApp();
|
||||
Loading…
Add table
Add a link
Reference in a new issue