debug.hpp 125 B

12345678910
  1. #ifndef DEBUG_HPP
  2. #define DEBUG_HPP
  3. class Debug{
  4. public:
  5. static const int level=1;
  6. static const size_t ix=0;
  7. };
  8. #endif