Assert.h 136 B

123456789101112
  1. #ifndef ASSERT_H
  2. #define ASSERT_H
  3. #include <cassert>
  4. #define QGEARS_ASSERT( exp, text ) assert( exp && text )
  5. #endif // ASSERT_H