automatic commit
[universe.git] / variables.h
1
2 ////////////////////////////////////////////////////////////////////////////////
3 // This program is free software; you can redistribute it and/or              //
4 // modify it under the terms of the GNU General Public License                //
5 // version 2 as published by the Free Software Foundation.                    //
6 //                                                                            //
7 // This program is distributed in the hope that it will be useful, but        //
8 // WITHOUT ANY WARRANTY; without even the implied warranty of                 //
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU          //
10 // General Public License for more details.                                   //
11 //                                                                            //
12 // Written and (C) by François Fleuret                                        //
13 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
14 ////////////////////////////////////////////////////////////////////////////////
15
16 #include "misc.h"
17
18 class Variables {
19   enum VariableType { INT, FLOAT, STRING };
20 public:
21   Variables();
22   virtual ~Variables();
23   virtual void add_default_int(char *name, int value);
24   virtual void add_default_float(char *name, scalar_t value);
25   virtual void add_default_string(char *name, char *value);
26   virtual int get_int_value();
27   virtual scalar_t get_float_value();
28   virtual char *get_string_value();
29 };