Sierra Toolkit  Version of the Day
UnitTestModificationEndWrapper.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 unit_test_UnitTestModificationEndWrapper_hpp
10 #define unit_test_UnitTestModificationEndWrapper_hpp
11 
12 #include <stk_mesh/base/BulkData.hpp>
13 
14 // must be in same namespace as BulkData to make friending w/out exposure possible
15 
16 namespace stk_classic {
17 namespace mesh {
18 
19 class UnitTestModificationEndWrapper
20 {
21  public:
22  static bool wrap(stk_classic::mesh::BulkData& mesh, bool generate_aura);
23 };
24 
25 } // namespace mesh
26 
27 namespace unit_test {
28 
29 bool modification_end_wrapper(stk_classic::mesh::BulkData& mesh, bool generate_aura);
30 
31 } // namespace unit_test
32 
33 } // namespace stk_classic
34 
35 #endif
Manager for an integrated collection of entities, entity relations, and buckets of field data...
Definition: BulkData.hpp:49
Sierra Toolkit.