5cd19940e55d45cadec9a53fbdbd55d6fe2f8180
[universe.git] / variables.cc
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 // $Id$
17
18 #include "variables.h"
19
20 Variables::Variables() {
21 }
22
23 Variables::~Variables() {
24 }
25
26 void Variables::add_default_int(char *name, int value) {
27 }
28
29 void Variables::add_default_float(char *name, scalar_t value) {
30 }
31
32 void Variables::add_default_string(char *name, char *value) {
33 }
34
35 int Variables::get_int_value() {
36   return 0;
37 }
38
39 scalar_t Variables::get_float_value() {
40   return 0.0;
41 }
42
43 char *Variables::get_string_value() {
44   return "";
45 }