definition.hpp 523 B

12345678910111213141516171819202122
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2024-05-31
  6. * Changed: 2024-05-31
  7. *
  8. * */
  9. #ifndef LS_STD_DEFINITION_HPP
  10. #define LS_STD_DEFINITION_HPP
  11. #if defined(_WIN32) && defined(_MSC_VER)
  12. #define LS_STD_CLASS class __declspec(dllexport)
  13. #endif
  14. #if defined(unix) || defined(__APPLE__) || defined(_WIN32) && defined(__GNUC__)
  15. #define LS_STD_CLASS class
  16. #endif
  17. #define ls_std_class LS_STD_CLASS
  18. #endif