20 lines
282 B
C
20 lines
282 B
C
|
|
#pragma once
|
||
|
|
#include <string>
|
||
|
|
namespace mix_cc {
|
||
|
|
namespace debug {
|
||
|
|
|
||
|
|
namespace detail {
|
||
|
|
class TestDebugModeTrue {
|
||
|
|
public:
|
||
|
|
TestDebugModeTrue();
|
||
|
|
};
|
||
|
|
|
||
|
|
class TestDebugModeFalse {
|
||
|
|
public:
|
||
|
|
TestDebugModeFalse();
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace detail
|
||
|
|
|
||
|
|
} // namespace debug
|
||
|
|
} // namespace mix_cc
|