ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/branches/new_design/OOPSE-3.0/src/utils/TypeContainer.hpp
(Generate patch)

Comparing branches/new_design/OOPSE-3.0/src/utils/TypeContainer.hpp (file contents):
Revision 1769 by tim, Fri Nov 19 20:23:26 2004 UTC vs.
Revision 1770 by tim, Tue Nov 23 17:53:43 2004 UTC

# Line 145 | Line 145 | namespace oopse {
145              unsigned int size() {
146                  return data_.size();
147              }
148 +
149 +            ElemPtr beginType(MapTypeIterator& i) {
150 +                i = data_.begin();
151 +                i  != data_.end() ? i->(i->second).second : NULL;
152 +
153 +            }
154 +
155 +            ElemPtr nextType(MapTypeIterator& i) {
156 +                ++i;
157 +                i  != data_.end() ? i->(i->second).second : NULL;
158 +            }
159              
160          private:
161              int index_;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines