cppwebframework_global.h.2 535 B

12345678910111213141516171819202122
  1. /*
  2. Copyright 2017 Herik Lima de Castro and Marcelo Medeiros Eler
  3. Distributed under MIT license, or public domain if desired and
  4. recognized in your jurisdiction.
  5. See file LICENSE for detail.
  6. */
  7. #ifndef CPPWEBFRAMEWORK_GLOBAL_H
  8. #define CPPWEBFRAMEWORK_GLOBAL_H
  9. #include <QtCore/qglobal.h>
  10. #if defined(CPPWEBFRAMEWORK_LIBRARY)
  11. # define CPPWEBFRAMEWORKSHARED_EXPORT
  12. #else
  13. # define CPPWEBFRAMEWORKSHARED_EXPORT
  14. #endif
  15. #define CWF_BEGIN_NAMESPACE namespace CWF {
  16. #define CWF_END_NAMESPACE }
  17. #endif // CPPWEBFRAMEWORK_GLOBAL_H