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

File Contents

# Content
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_

Properties

Name Value
svn:eol-style native
svn:keywords Id