#ifndef _CONFIGURE_H_ #include // just here to include "bool" for extremely // stupid compilers (i.e. older versions of VC++) class configurable { private: protected: public: configurable(); configurable(char *prompt); configurable(char *prompt, char *optPrompt); void setFinal(bool isFinal); bool isFinal(); void setFirst(bool isFirst); bool isFirst(); void setOption(bool to); bool getOption(); char *prompt; bool option; bool final; bool first; char *optPrompt; }; #define _CONFIGURE_H_ 1 #endif