Ignore:
Timestamp:
2000-09-12T13:36:44+12:00 (24 years ago)
Author:
sjboddie
Message:

Got compiling on VC++ 4.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsinstaller/configurable.h

    r1397 r1539  
    11#ifndef _CONFIGURE_H_
     2
     3#include <map> // just here to include "bool" for extremely
     4               // stupid compilers (i.e. older versions of VC++)
     5
    26class configurable
    3 { private:
    4     protected:
    5   public:
    6     configurable();
    7     configurable(char *prompt);
    8     configurable(char *prompt, char *optPrompt);
     7{
     8private:
     9protected:
     10public:
     11  configurable();
     12  configurable(char *prompt);
     13  configurable(char *prompt, char *optPrompt);
    914
    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;
     15  void setFinal(bool isFinal);
     16  bool isFinal();
     17 
     18  void setOption(bool to);
     19  bool getOption();
     20 
     21  char *prompt;
     22  bool option;
     23  bool final;
     24  char *optPrompt;
    2025};
    2126#define _CONFIGURE_H_ 1
Note: See TracChangeset for help on using the changeset viewer.