Lunchbox  1.13.0
Multi-threaded C++ toolbox library for all application developers creating high-performance multi-threaded programs.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
defines.h
1 
2 /* Copyright (c) 2014 Stefan.Eilemann@epfl.ch */
3 
4 #ifndef LUNCHBOX_DEFINES_H
5 #define LUNCHBOX_DEFINES_H
6 
7 #ifdef __APPLE__
8 # include <lunchbox/definesDarwin.h>
9 #elif defined (__linux__)
10 # include <lunchbox/definesLinux.h>
11 #elif defined (_WIN32)
12 # include <lunchbox/definesWin32.h>
13 #else
14 # error Unknown OS
15 #endif
16 
17 #endif