ClockWork DB CoreAPI 1.0.48
Abstract Time Series and Storage/Management Library
Loading...
Searching...
No Matches
defines.hpp
1#ifndef HAVE_TOM__DEFINES_HPP
2#define HAVE_TOM__DEFINES_HPP
3
4#if defined(__WIN32__)
5# ifdef DLL_EXPORT
6# define TOM_UTIL_API __declspec(dllexport)
7# else
8# define TOM_UTIL_API __declspec(dllimport)
9# endif
10#endif
11
12#ifndef TOM_UTIL_API
13# define TOM_UTIL_API
14#endif
15
16#define TOM_NAMESPACE_BEGIN namespace tom { // begin tom namespace
17#define TOM_NAMESPACE_END } // end tom namespace
18#define TOM_CALENDAR_NAMESPACE_BEGIN namespace calendars { // begin calendar namespace
19#define TOM_CALENDAR_NAMESPACE_END } // end calendar namespace
20
21#endif