Memosa-FVM  0.2
misc.h
Go to the documentation of this file.
1 // This file os part of FVM
2 // Copyright (c) 2012 FVM Authors
3 // See LICENSE file for terms.
4 
5 #ifndef _MISC_H_
6 #define _MISC_H_
7 
8 #include <map>
9 #include <vector>
10 
11 using namespace std;
12 
13 #include <boost/foreach.hpp>
14 #define foreach BOOST_FOREACH
15 #define reverse_foreach BOOST_REVERSE_FOREACH
16 
17 #include <boost/shared_ptr.hpp>
18 
19 using namespace boost;
20 
21 #include "RLogInterface.h"
22 
23 #endif