Go to the documentation of this file.00001 #ifndef rgrl_set_of_h_
00002 #define rgrl_set_of_h_
00003
00004
00005
00006
00007
00008
00009 #include <vcl_vector.h>
00010 #include <vcl_cstddef.h>
00011
00012
00013
00014
00015
00016
00017
00018 template<typename T>
00019 class rgrl_set_of
00020 {
00021 public:
00022
00023 rgrl_set_of();
00024
00025
00026
00027
00028 void
00029 push_back( T const& item );
00030
00031
00032 vcl_size_t
00033 size() const;
00034
00035
00036 T const& operator[]( unsigned i ) const;
00037
00038
00039 T& operator[]( unsigned i );
00040
00041
00042 void
00043 clear();
00044
00045
00046 void fill( T const& item );
00047
00048
00049 void
00050 resize( unsigned n );
00051
00052
00053 bool empty() const;
00054
00055 private:
00056 vcl_vector< T > data_;
00057 };
00058
00059 #endif // rgrl_set_of_h_