Cleaning up for DL.
[universe.git] / variables.cc
1
2 // Written and (C) by Francois Fleuret
3 // Contact <francois.fleuret@idiap.ch> for comments & bug reports
4
5 #include "variables.h"
6
7 Variables::Variables() {
8 }
9
10 Variables::~Variables() {
11 }
12
13 void Variables::add_default_int(char *name, int value) {
14 }
15
16 void Variables::add_default_float(char *name, scalar_t value) {
17 }
18
19 void Variables::add_default_string(char *name, char *value) {
20 }
21
22 int Variables::get_int_value() {
23   return 0;
24 }
25
26 scalar_t Variables::get_float_value() {
27   return 0.0;
28 }
29
30 char *Variables::get_string_value() {
31   return "";
32 }