PreProcessor.h 515 B

123456789101112131415161718192021222324
  1. //
  2. // "$Id: Guard.h 55347 2012-03-22 11:26:45Z qin_fenglin $"
  3. //
  4. // Copyright (c)1992-2007, ZheJiang Dahua Technology Stock CO.LTD.
  5. // All Rights Reserved.
  6. //
  7. // Description:
  8. // Revisions: Year-Month-Day SVN-Author Modification
  9. //
  10. #ifndef __INFRA3_PREPROCESSOR_H__
  11. #define __INFRA3_PREPROCESSOR_H__
  12. #if defined(__GNUC__)
  13. #include "Detail/pp_gcc.hpp"
  14. #elif defined(_MSC_VER) && (_MSC_VER >= 1300)
  15. #include "Detail/pp_msvc.hpp"
  16. #else
  17. //#error unknown platform!!!
  18. #endif
  19. #endif // __INFRA3_PREPROCESSOR_H__