diff options
author | chai <chaifix@163.com> | 2018-08-24 20:05:03 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-08-24 20:05:03 +0800 |
commit | 731a1b930c4ca5c6494539877d56e01f90fce885 (patch) | |
tree | c84a7f0523d225dffd4f2dc835730507b7973051 /src/libjin/Audio/SDL/SDLSource.cpp | |
parent | e6e3c76c1f2829537d368501a74af0646f5559d4 (diff) |
*remove nonsense macros
Diffstat (limited to 'src/libjin/Audio/SDL/SDLSource.cpp')
-rw-r--r-- | src/libjin/Audio/SDL/SDLSource.cpp | 10 |
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) { |