|
Sierra Toolkit
Version of the Day
|
00001 /*------------------------------------------------------------------------*/ 00002 /* Copyright 2010 Sandia Corporation. */ 00003 /* Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive */ 00004 /* license for use of this work by or on behalf of the U.S. Government. */ 00005 /* Export of this program may require a license from the */ 00006 /* United States Government. */ 00007 /*------------------------------------------------------------------------*/ 00008 00009 #ifndef unit_test_UnitTestModificationEndWrapper_hpp 00010 #define unit_test_UnitTestModificationEndWrapper_hpp 00011 00012 #include <stk_mesh/base/BulkData.hpp> 00013 00014 // must be in same namespace as BulkData to make friending w/out exposure possible 00015 00016 namespace stk_classic { 00017 namespace mesh { 00018 00019 class UnitTestModificationEndWrapper 00020 { 00021 public: 00022 static bool wrap(stk_classic::mesh::BulkData& mesh, bool generate_aura); 00023 }; 00024 00025 } // namespace mesh 00026 00027 namespace unit_test { 00028 00029 bool modification_end_wrapper(stk_classic::mesh::BulkData& mesh, bool generate_aura); 00030 00031 } // namespace unit_test 00032 00033 } // namespace stk_classic 00034 00035 #endif