12345678910111213141516171819202122 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2024-05-31
- * Changed: 2024-05-31
- *
- * */
- #ifndef LS_STD_DEFINITION_HPP
- #define LS_STD_DEFINITION_HPP
- #if defined(_WIN32) && defined(_MSC_VER)
- #define LS_STD_CLASS class __declspec(dllexport)
- #endif
- #if defined(unix) || defined(__APPLE__) || defined(_WIN32) && defined(__GNUC__)
- #define LS_STD_CLASS class
- #endif
- #define ls_std_class LS_STD_CLASS
- #endif
|