ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/ccscs20/Iterator.hpp
Revision: 1
Committed: 2004-05-12T23:36:53-07:00 (21 years, 1 month ago) by Douglas Thrift
File size: 354 byte(s)
Log Message:
w00t!

File Contents

# User Rev Content
1 Douglas Thrift 1 // Iterator
2     //
3     // Douglas Thrift
4     //
5     // $Id$
6    
7     #ifndef _Iterator_hpp_
8     #define _Iterator_hpp_
9    
10     template<typename Type>
11     class Iterator
12     {
13     private:
14     //
15     public:
16     Iterator() {}
17     ~Iterator() {}
18     const Iterator<Type>& operator++();
19     Iterator<Type> operator++(int);
20     const Iterator<Type>& operator--();
21     Iterator<Type> operator--(int);
22     };
23    
24     #endif // _Iterator_hpp_