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

Comparing branches/new_design/OOPSE-4/src/brains/Exclude.hpp (file contents):
Revision 1727 by tim, Thu Nov 11 16:41:58 2004 UTC vs.
Revision 1804 by tim, Tue Nov 30 19:58:25 2004 UTC

# Line 2 | Line 2
2  
3   #define __EXCLUDE_H__
4  
5 + #include <iostream>
6   #include <set>
7   #include <utility>
8 < #include <iostream>
8 > #include <vector>
9  
10   namespace oopse {
11  
# Line 16 | Line 17 | namespace oopse {
17      class Exclude {
18          public:
19  
20 <            Exclude();
20 >            Exclude() : modified_(false) {}
21  
21            ~Exclude();
22  
23              /** Adds a pair into this Exclude class */
24              void addPair(int i, int j);
# Line 41 | Line 41 | namespace oopse {
41              int *getExcludeList();
42  
43              /** write out the exclusion list to an ostream */
44 <            friend std::ostream& operator(std::ostream& o, Exclude& e);
44 >            friend std::ostream& operator <<(std::ostream& o, Exclude& e);
45  
46          private:
47  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines