Mesh Oriented datABase  (version 5.5.0)
An array-based unstructured mesh library
Forward.hpp
Go to the documentation of this file.
1 /**
2  * MOAB, a Mesh-Oriented datABase, is a software component for creating,
3  * storing and accessing finite element mesh data.
4  *
5  * Copyright 2004 Sandia Corporation. Under the terms of Contract
6  * DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government
7  * retains certain rights in this software.
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  */
15 
16 #ifndef MOAB_FORWARD_HPP
17 #define MOAB_FORWARD_HPP
18 
19 #include "moab/Types.hpp"
20 #include <vector>
21 
22 namespace moab
23 {
24 
25 class Interface;
26 class Range;
27 class SetIterator;
28 class ProcConfig;
29 
30 typedef std::vector< EntityHandle > HandleVec;
31 
32 } // namespace moab
33 
34 #endif