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