source: trunk/gsinstaller/configurable.h@ 1537

Last change on this file since 1537 was 1397, checked in by cs025, 24 years ago

Initial revision

  • Property svn:keywords set to Author Date Id Revision
File size: 411 bytes
Line 
1#ifndef _CONFIGURE_H_
2class configurable
3{ private:
4 protected:
5 public:
6 configurable();
7 configurable(char *prompt);
8 configurable(char *prompt, char *optPrompt);
9
10 void setFinal(bool isFinal);
11 bool isFinal();
12
13 void setOption(bool to);
14 bool getOption();
15
16 char *prompt;
17 bool option;
18 bool final;
19 char *optPrompt;
20};
21#define _CONFIGURE_H_ 1
22#endif
Note: See TracBrowser for help on using the repository browser.