Skip to content
Snippets Groups Projects
Commit c8229582 authored by Oliver Sander's avatar Oliver Sander Committed by sander@FU-BERLIN.DE
Browse files

export iterators over rods and continua

[[Imported from SVN: r6862]]
parent a40035bb
Branches
No related tags found
No related merge requests found
......@@ -56,6 +56,14 @@ class RodContinuumComplex
public:
/** \brief Iterator over the rods */
typedef typename std::map<std::string, RodData>::iterator RodIterator;
typedef typename std::map<std::string, RodData>::const_iterator ConstRodIterator;
/** \brief Iterator over the continua */
typedef typename std::map<std::string, ContinuumData>::iterator ContinuumIterator;
typedef typename std::map<std::string, ContinuumData>::const_iterator ConstContinuumIterator;
/** \brief Iterator over the couplings */
typedef typename std::map<std::pair<std::string,std::string>, Coupling>::const_iterator ConstCouplingIterator;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment