OpmParserIncludes.hpp
1 /*
2  Copyright 2017 IRIS AS
3 
4  This file is part of The Open Porous Media project (OPM).
5 
6  OPM is free software: you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation, either version 3 of the License, or
9  (at your option) any later version.
10 
11  OPM is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with OPM. If not, see <http://www.gnu.org/licenses/>.
18 */
19 #ifndef OPM_GRID_OPMPARSERINCLUDES_HEADER_INCLUDED
20 #define OPM_GRID_OPMPARSERINCLUDES_HEADER_INCLUDED
21 
22 #if HAVE_OPM_PARSER
23 #include <opm/parser/eclipse/Parser/ParseContext.hpp>
24 #include <opm/parser/eclipse/Parser/Parser.hpp>
25 #include <opm/parser/eclipse/Deck/Deck.hpp>
26 #include <opm/parser/eclipse/Deck/DeckItem.hpp>
27 #include <opm/parser/eclipse/Deck/DeckKeyword.hpp>
28 #include <opm/parser/eclipse/Deck/DeckRecord.hpp>
29 #include <opm/parser/eclipse/EclipseState/EclipseState.hpp>
30 #include <opm/parser/eclipse/EclipseState/Schedule/CompletionSet.hpp>
31 #include <opm/parser/eclipse/EclipseState/Schedule/Schedule.hpp>
32 #include <opm/parser/eclipse/EclipseState/Schedule/TimeMap.hpp>
33 #include <opm/parser/eclipse/EclipseState/Schedule/Well.hpp>
34 
35 namespace Dune {
36  namespace cpgrid {
37  typedef Opm::EclipseState OpmEclipseStateType;
38  }
39 }
40 #else // #if HAVE_OPM_PARSER
41 
42 namespace Dune {
43  namespace cpgrid {
44  typedef int OpmEclipseStateType;
45  }
46 }
47 
48 #endif // #if HAVE_OPM_PARSER
49 
50 #endif // #ifndef OPM_GRID_OPMPARSERINCLUDES_HEADER_INCLUDED
Holds the implementation of the CpGrid as a pimple.
Definition: OpmParserIncludes.hpp:42