libcxx2.h 266 B

123456789101112131415
  1. #ifdef _WIN32
  2. #ifdef testcxx2_EXPORTS
  3. #define CM_TEST_LIB_EXPORT __declspec(dllexport)
  4. #else
  5. #define CM_TEST_LIB_EXPORT __declspec(dllimport)
  6. #endif
  7. #else
  8. #define CM_TEST_LIB_EXPORT
  9. #endif
  10. class CM_TEST_LIB_EXPORT LibCxx2Class
  11. {
  12. public:
  13. static float Method();
  14. };