OMSimulatorLib
The OMSimulator project is a FMI-based co-simulation environment that supports ordinary (i.e., non-delayed) and TLM connections.
OMSBoost.h
Go to the documentation of this file.
1 /*
2  * This file is part of OpenModelica.
3  *
4  * Copyright (c) 1998-CurrentYear, Open Source Modelica Consortium (OSMC),
5  * c/o Linköpings universitet, Department of Computer and Information Science,
6  * SE-58183 Linköping, Sweden.
7  *
8  * All rights reserved.
9  *
10  * THIS PROGRAM IS PROVIDED UNDER THE TERMS OF GPL VERSION 3 LICENSE OR
11  * THIS OSMC PUBLIC LICENSE (OSMC-PL) VERSION 1.2.
12  * ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS PROGRAM CONSTITUTES
13  * RECIPIENT'S ACCEPTANCE OF THE OSMC PUBLIC LICENSE OR THE GPL VERSION 3,
14  * ACCORDING TO RECIPIENTS CHOICE.
15  *
16  * The OpenModelica software and the Open Source Modelica
17  * Consortium (OSMC) Public License (OSMC-PL) are obtained
18  * from OSMC, either from the above address,
19  * from the URLs: http://www.ida.liu.se/projects/OpenModelica or
20  * http://www.openmodelica.org, and in the OpenModelica distribution.
21  * GNU version 3 is obtained from: http://www.gnu.org/copyleft/gpl.html.
22  *
23  * This program is distributed WITHOUT ANY WARRANTY; without
24  * even the implied warranty of MERCHANTABILITY or FITNESS
25  * FOR A PARTICULAR PURPOSE, EXCEPT AS EXPRESSLY SET FORTH
26  * IN THE BY RECIPIENT SELECTED SUBSIDIARY LICENSE CONDITIONS OF OSMC-PL.
27  *
28  * See the full OSMC Public License conditions for more details.
29  *
30  */
31 
32 #ifndef _OMS_BOOST_H_
33 #define _OMS_BOOST_H_
34 
35 
36 #ifdef __cplusplus
37 extern "C"
38 {
39 #endif
40 
41 #if (BOOST_VERSION < 104600)
42 #if defined(_MSC_VER) || defined(__MINGW32__)
43 #include <windows.h>
44 #endif
45 #endif
46 
47 #ifdef __cplusplus
48 }
49 #endif
50 
51 #include <cstdlib>
52 #include <string>
53 #include <boost/version.hpp>
54 // boost version < 1.57 has issues linking boost::filesystem::copy_file
55 // https://svn.boost.org/trac10/ticket/6124
56 #if (BOOST_VERSION < 105700)
57 #define BOOST_NO_CXX11_SCOPED_ENUMS
58 #endif // #if (BOOST_VERSION < 105700)
59 #include <boost/filesystem.hpp>
60 #if (BOOST_VERSION < 105700)
61 #undef BOOST_NO_CXX11_SCOPED_ENUMS
62 #endif // #if (BOOST_VERSION < 105700)
63 
64 #if (BOOST_VERSION >= 105300)
65 #include <boost/lockfree/queue.hpp>
66 #include <ctpl.h>
67 #else // use the standard queue
68 #include <ctpl_stl.h>
69 #endif
70 
71 
72 boost::filesystem::path oms_temp_directory_path(void);
73 boost::filesystem::path oms_canonical(boost::filesystem::path p);
74 boost::filesystem::path oms_unique_path(const std::string& prefix);
75 
76 #endif
boost::filesystem::path oms_unique_path(const std::string &prefix)
Definition: OMSBoost.cpp:74
boost::filesystem::path oms_temp_directory_path(void)
Definition: OMSBoost.cpp:35
boost::filesystem::path oms_canonical(boost::filesystem::path p)
Definition: OMSBoost.cpp:65