aboutsummaryrefslogtreecommitdiffstats
path: root/src/base/song.hpp
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2010-04-04 13:41:32 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-05 17:17:47 +0100
commitd8e80ce96801510fde0a256d92dc5fac8adfe22c (patch)
treee167e1e4dcbccab111327b4748ef5140640852f6 /src/base/song.hpp
parent1feb5dd5ceb44e2647abc52a13d05f62bf4c903c (diff)
downloadusdx-d8e80ce96801510fde0a256d92dc5fac8adfe22c.tar.gz
usdx-d8e80ce96801510fde0a256d92dc5fac8adfe22c.tar.xz
usdx-d8e80ce96801510fde0a256d92dc5fac8adfe22c.zip
renamed Song::cover to Song::cover_file and added Texture* Song::cover
Diffstat (limited to '')
-rw-r--r--src/base/song.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/base/song.hpp b/src/base/song.hpp
index 2217e244..d0c06c9a 100644
--- a/src/base/song.hpp
+++ b/src/base/song.hpp
@@ -34,6 +34,7 @@
#include <log4cxx/logger.h>
#include "bpm.hpp"
#include "lyric_line.hpp"
+#include "texture.hpp"
#include "utils/base_exception.hpp"
namespace usdx
@@ -74,8 +75,8 @@ namespace usdx
std::wstring video;
float video_gap;
- std::wstring cover;
- // texture cover_tex;
+ std::wstring cover_file;
+ Texture* cover;
std::wstring genre;
std::wstring edition;
@@ -127,7 +128,7 @@ namespace usdx
const std::wstring& get_mp3(void) const;
const float get_bpm(int beat) const;
const float get_gap(void) const;
- const std::wstring& get_cover(void) const;
+ const std::wstring& get_cover_file(void) const;
const std::wstring& get_background(void) const;
const std::wstring& get_video(void) const;
const float get_video_gap(void) const;