source: trunk/gsinstaller/configurable.cpp@ 1397

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

Initial revision

  • Property svn:keywords set to Author Date Id Revision
File size: 646 bytes
Line 
1#include "configurable.h"
2
3configurable::configurable()
4{
5}
6
7configurable::configurable(char *prompt)
8{ this->prompt = prompt;
9 this->optPrompt = 0;
10 this->final = false;
11 this->option = false;
12}
13
14configurable::configurable(char *prompt, char *optPrompt)
15{ this->prompt = prompt;
16 this->optPrompt = optPrompt;
17 this->final = false;
18 this->option = false;
19}
20
21void configurable::setOption(bool to)
22{ this->option = to;
23}
24
25bool configurable::getOption()
26{ return this->option;
27}
28
29void configurable::setFinal(bool isFinal)
30{ this->final = isFinal;
31}
32
33bool configurable::isFinal()
34{ return this->final;
35}
Note: See TracBrowser for help on using the repository browser.