aboutsummaryrefslogtreecommitdiffstats
path: root/src/base/songloading/songloader.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-05-04remove semicolon after namespaceAlexander Sulfrian1-1/+1
Class definitions have to end with a semicolon but not namespaces. So remove this everywhere.
2013-01-20fix includesAlexander Sulfrian1-0/+2
2013-01-13remove legacy keywords from file headerAlexander Sulfrian1-2/+0
2013-01-05ported from log4cxx to log4cppAlexander Sulfrian1-4/+8
log4cxx depends on Apache Portable Runtime Utility Library, so we switch to log4cpp with nearly the same features but with no dependencies for easier porting to other platforms
2013-01-05changed all wstring/wchar_t to string/charAlexander Sulfrian1-6/+6
2013-01-05dynamic registration of songloading_strategies with static templateAlexander Sulfrian1-16/+11
2013-01-05changed all song paths to boost::filesystem::wpathAlexander Sulfrian1-22/+10
all song paths are now wpath so all extensions are also std::wstring and all logging with song filename have to be also std::wstring
2013-01-05delete all members of containers with std::for_eachAlexander Sulfrian1-6/+9
2013-01-05made singletons reusableAlexander Sulfrian1-0/+3
set instance variable to NULL on deletion of singleton, so that it is reconstructed before next usage
2013-01-05added custom exception classes for better catching them (gotta catch 'em all)Alexander Sulfrian1-2/+2
2013-01-05fix memory leakAlexander Sulfrian1-0/+6
2013-01-05added parsing of song lyric linesAlexander Sulfrian1-0/+18
2013-01-05added txt header loading with test and some preparations for loading notesAlexander Sulfrian1-2/+2
2013-01-05added song loading stubs with different strategies chosen by file extensionAlexander Sulfrian1-0/+76