Advertisement
Guest User

Untitled

a guest
Jan 14th, 2013
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #ifndef common_header_h__
  2. #define common_header_h__
  3.  
  4. #define _CRT_SECURE_NO_DEPRECATE
  5.  
  6. #include <cstdio>
  7. #include <vector>
  8. #include <string>
  9. #include <iostream>
  10. #include <cassert>
  11.  
  12. using namespace std;
  13.  
  14. #ifdef _DEBUG
  15. #define DEBUG_ASSERT( T ) assert( T )
  16. #else
  17. #define DEBUG_ASSERT( T )
  18. #endif
  19.  
  20. #endif // common_header_h__
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement