Skip to content
Snippets Groups Projects
Commit 832b784d authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Add Container_t::getKeys

parent dc5032bb
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,8 @@ namespace hpp {
{
public:
typedef std::map <Key, Element> ElementMap_t;
typedef Key Key_t;
typedef Element Element_t;
/// Add an element
void add (const Key& name, const Element& element)
......@@ -55,6 +57,16 @@ namespace hpp {
return l;
}
template <typename ReturnType>
ReturnType getKeys () const
{
ReturnType l;
for (typename ElementMap_t::const_iterator it = map_.cbegin ();
it != map_.cend (); ++it)
l.push_back (it->first);
return l;
}
/// Return the underlying map.
const ElementMap_t& getAll () const
{
......
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