Imported Upstream version 3.0
[debian/gnuradio] / gnuradio-core / src / lib / general / gr_prefs.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2006 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26
27 #include <gr_prefs.h>
28
29 /*
30  * Stub implementations
31  */
32
33 static gr_prefs  s_default_singleton;
34 static gr_prefs  *s_singleton = &s_default_singleton;
35
36 gr_prefs *
37 gr_prefs::singleton()
38 {
39   return s_singleton;
40 }
41
42 void
43 gr_prefs::set_singleton(gr_prefs *p)
44 {
45   s_singleton = p;
46 }
47
48 gr_prefs::~gr_prefs()
49 {
50   // nop
51 }
52
53 bool
54 gr_prefs::has_section(const std::string section)
55 {
56   return false;
57 }
58
59 bool
60 gr_prefs::has_option(const std::string section, const std::string option)
61 {
62   return false;
63 }
64
65 const std::string
66 gr_prefs::get_string(const std::string section, const std::string option, const std::string default_val)
67 {
68   return default_val;
69 }
70
71 bool
72 gr_prefs::get_bool(const std::string section, const std::string option, bool default_val)
73 {
74   return default_val;
75 }
76
77 long
78 gr_prefs::get_long(const std::string section, const std::string option, long default_val)
79 {
80   return default_val;
81 }
82
83 double
84 gr_prefs::get_double(const std::string section, const std::string option, double default_val)
85 {
86   return default_val;
87 }
88