00001 00006 #ifndef __VGEN_H__ 00007 #define __VGEN_H__ 00008 00017 class ValueGen { 00018 public: 00019 ValueGen() { }; 00020 virtual ~ValueGen() { } 00022 virtual bool next()=0; 00024 virtual void reset()=0; 00025 }; 00026 00027 #endif /* __VGEN_H__ */