/* Copyright 2017 Herik Lima de Castro and Marcelo Medeiros Eler Distributed under MIT license, or public domain if desired and recognized in your jurisdiction. See file LICENSE for detail. */ #ifndef CPPWEBFRAMEWORK_GLOBAL_H #define CPPWEBFRAMEWORK_GLOBAL_H #include #if defined(CPPWEBFRAMEWORK_LIBRARY) # define CPPWEBFRAMEWORKSHARED_EXPORT #else # define CPPWEBFRAMEWORKSHARED_EXPORT #endif #define CWF_BEGIN_NAMESPACE namespace CWF { #define CWF_END_NAMESPACE } #endif // CPPWEBFRAMEWORK_GLOBAL_H