Etterna 0.74.4
Loading...
Searching...
No Matches
NotesLoader.h
1// test
2
3#ifndef NOTES_LOADER_H
4#define NOTES_LOADER_H
5
6#include <set>
7
8class Song;
9
11namespace NotesLoader {
17void
18GetMainAndSubTitlesFromFullTitle(const std::string& sFullTitle,
19 std::string& sMainTitleOut,
20 std::string& sSubTitleOut);
27bool
28LoadFromDir(const std::string& sPath,
29 Song& out,
30 std::set<std::string>& BlacklistedImages);
31}
32
33#endif
Holds all music metadata and steps for one song.
Definition Song.h:65
Base class for step file loaders.
Definition NotesLoader.h:11
void GetMainAndSubTitlesFromFullTitle(const std::string &sFullTitle, std::string &sMainTitleOut, std::string &sSubTitleOut)
Identify the main and sub titles from a full title.
Definition NotesLoader.cpp:13
bool LoadFromDir(const std::string &sPath, Song &out, std::set< std::string > &BlacklistedImages)
Attempt to load a Song from the given directory.
Definition NotesLoader.cpp:33