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

Comparing branches/new_design/OOPSE-4/src/utils/LocalndexManager.hpp (file contents):
Revision 1700 by tim, Tue Nov 2 22:41:09 2004 UTC vs.
Revision 1719 by tim, Fri Nov 5 23:38:27 2004 UTC

# Line 50 | Line 50 | class IndexListContainer{
50          typedef IndexListContainerIterator IndexListContainerIterator;
51  
52          
53 <        IndexListContainer(unsigned int maxIndex = MAX_INTEGER) : maxIndex_(maxIndex) {
53 >        IndexListContainer(unsigned int minIndex = 0, unsigned int maxIndex = MAX_INTEGER)
54 >                                                 :minIndex_(minIndex) maxIndex_(maxIndex) {
55              
56 <            indexContainer_.push_back(make_pair(0, maxIndex));
56 >            indexContainer_.push_back(make_pair(minIndex, maxIndex));
57          }
58          
59          unsigned int pop() {
# Line 234 | Line 235 | class IndexListContainer{
235              }
236  
237          }
238 <        
238 >        unsgined int minIndex_;
239          unsigned int maxIndex_;        
240          std::list<std::pair<unsigned int, unsigned int> > indexContainer_;
241   };

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines