source: other-projects/trunk/gsinstaller/configurable.cpp@ 15332

Last change on this file since 15332 was 11664, checked in by mdewsnip, 18 years ago

Fixed the line endings... for real this time, I hope.

  • Property svn:keywords set to Author Date Id Revision
File size: 725 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}
28void configurable::setFirst(bool isFirst){ this->first = isFirst;}bool configurable::isFirst()
29{ return this->first;}
30void configurable::setFinal(bool isFinal){ this->final = isFinal;}
31bool configurable::isFinal(){ return this->final;}
Note: See TracBrowser for help on using the repository browser.