aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/Audio/SDL/SDLSource.cpp
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2018-08-24 20:05:03 +0800
committerchai <chaifix@163.com>2018-08-24 20:05:03 +0800
commit731a1b930c4ca5c6494539877d56e01f90fce885 (patch)
treec84a7f0523d225dffd4f2dc835730507b7973051 /src/libjin/Audio/SDL/SDLSource.cpp
parente6e3c76c1f2829537d368501a74af0646f5559d4 (diff)
*remove nonsense macros
Diffstat (limited to 'src/libjin/Audio/SDL/SDLSource.cpp')
-rw-r--r--src/libjin/Audio/SDL/SDLSource.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libjin/Audio/SDL/SDLSource.cpp b/src/libjin/Audio/SDL/SDLSource.cpp
index c868df5..5c6abb8 100644
--- a/src/libjin/Audio/SDL/SDLSource.cpp
+++ b/src/libjin/Audio/SDL/SDLSource.cpp
@@ -52,7 +52,7 @@ namespace audio
STEREO = 2, //
};
- typedef MASK enum STATUS
+ typedef /*mask*/ enum STATUS
{
PLAYING = 1,
PAUSED = 2,
@@ -63,10 +63,10 @@ namespace audio
#define Action Command::Action
#define Manager SDLSourceManager
- //shared std::queue<Command*> Manager::commands;
- //shared std::stack<Command*> Manager::commandsPool;
- //shared std::vector<SDLSource*> Manager::sources;
- shared Manager* Manager::manager = nullptr;
+ ///*class member*/ std::queue<Command*> Manager::commands;
+ ///*class member*/ std::stack<Command*> Manager::commandsPool;
+ ///*class member*/ std::vector<SDLSource*> Manager::sources;
+ /*class member*/ Manager* Manager::manager = nullptr;
SDLSource* SDLSource::createSource(const char* file)
{