Sierra Toolkit  Version of the Day
FieldIdMap.hpp
1 /*------------------------------------------------------------------------*/
2 /* Copyright 2010 Sandia Corporation. */
3 /* Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive */
4 /* license for use of this work by or on behalf of the U.S. Government. */
5 /* Export of this program may require a license from the */
6 /* United States Government. */
7 /*------------------------------------------------------------------------*/
8 
9 #ifndef stk_linsys_FieldIdMap_hpp
10 #define stk_linsys_FieldIdMap_hpp
11 
12 #include <map>
13 #include <stk_mesh/base/Field.hpp>
14 
15 namespace stk_classic {
16 namespace linsys {
17 
20 typedef std::map<const stk_classic::mesh::FieldBase*,int> FieldIdMap;
21 
22 }//namespace linsys
23 }//namespace stk_classic
24 
25 #endif
std::map< const stk_classic::mesh::FieldBase *, int > FieldIdMap
Definition: FieldIdMap.hpp:20
Sierra Toolkit.