Sierra Toolkit  Version of the Day
BulkModification.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_MESH_BASE_BULK_MODIFICATION_HPP
10 #define STK_MESH_BASE_BULK_MODIFICATION_HPP
11 
12 #include <vector>
13 #include <stk_mesh/base/Types.hpp>
14 
15 namespace stk_classic {
16 namespace mesh {
17 
28 void find_closure( const BulkData & bulk,
29  const std::vector< Entity *> & entities,
30  std::vector< Entity *> & entities_closure);
31 
32 } // namespace mesh
33 } // namespace stk_classic
34 
35 
36 #endif // STK_MESH_BASE_BULK_MODIFICATION_HPP
Sierra Toolkit.