Skip to content
Snippets Groups Projects
Commit 5614a2c2 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[Asm] forward method from MeshCompMap

parent 488c1753
No related branches found
No related tags found
No related merge requests found
...@@ -88,6 +88,12 @@ public: ...@@ -88,6 +88,12 @@ public:
return _mesh_component_map.getGlobalIndex(l, c); return _mesh_component_map.getGlobalIndex(l, c);
} }
/// Forwards the respective method from MeshComponentMap.
std::vector<GlobalIndexType> getGlobalIndices(const MeshLib::Location &l) const
{
return _mesh_component_map.getGlobalIndices(l);
}
private: private:
/// Private constructor used by internally created local-to-global index /// Private constructor used by internally created local-to-global index
/// maps. The mesh_component_map is passed as argument instead of being /// maps. The mesh_component_map is passed as argument instead of being
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment