FLOPC++
FlopCppConfig.h
Go to the documentation of this file.
1 /*
2  * Include file for the configuration of FlopC++.
3  *
4  * On systems where the code is configured with the configure script
5  * (i.e., compilation is always done with HAVE_CONFIG_H defined), this
6  * header file includes the automatically generated header file.
7  *
8  * On systems that are compiled in other ways (e.g., with the
9  * Developer Studio), a header files is included to define those
10  * macros that depend on the operating system and the compiler. The
11  * macros that define the configuration of the particular user setting
12  * (e.g., presence of other COIN-OR packages or third party code) are set
13  * by the files config_*default.h. The project maintainer needs to remember
14  * to update these file and choose reasonable defines.
15  * A user can modify the default setting by editing the config_*default.h files.
16  *
17  */
18 
19 #ifndef __FLOPCPPCONFIG_H__
20 #define __FLOPCPPCONFIG_H__
21 
22 #ifdef HAVE_CONFIG_H
23 #include "config_flopcpp.h"
24 #else
25 #include "config_flopcpp_default.h"
26 #endif
27 
28 #endif /*__FLOPCPPCONFIG_H__*/