Skip to content

Commit

Permalink
astyling DagMC.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
bam241 committed May 18, 2020
1 parent 38e457e commit 0ad526f
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/dagmc/DagMC.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -366,12 +366,15 @@ class DagMC {
ErrorCode unpack_packed_string(Tag tag, EntityHandle eh,
std::vector< std::string >& values);

std::vector<EntityHandle>& surf_handles()
{return entHandles[surfs_handle_idx];}
std::vector<EntityHandle>& vol_handles()
{return entHandles[vols_handle_idx];}
std::vector<EntityHandle>& group_handles()
{return entHandles[groups_handle_idx];}
std::vector<EntityHandle>& surf_handles() {
return entHandles[surfs_handle_idx];
}
std::vector<EntityHandle>& vol_handles() {
return entHandles[vols_handle_idx];
}
std::vector<EntityHandle>& group_handles() {
return entHandles[groups_handle_idx];
}

Tag get_tag(const char* name, int size, TagType store, DataType type,
const void* def_value = NULL, bool create_if_missing = true);
Expand Down

0 comments on commit 0ad526f

Please sign in to comment.