summaryrefslogtreecommitdiff
path: root/gnuradio-core/src/lib/general/gr_prefs.i
diff options
context:
space:
mode:
authorTom Rondeau2013-03-05 16:06:53 -0500
committerTom Rondeau2013-03-05 16:42:32 -0500
commit54a4df9513ea681a8b376c4df3f4f846f92201c1 (patch)
tree3932eb449459c2a85fcefe5839ed9b3de7bfadc1 /gnuradio-core/src/lib/general/gr_prefs.i
parent71f1ee49ec4d444f51bdafa6922c1732a7e0d4bd (diff)
downloadgnuradio-54a4df9513ea681a8b376c4df3f4f846f92201c1.tar.gz
gnuradio-54a4df9513ea681a8b376c4df3f4f846f92201c1.tar.bz2
gnuradio-54a4df9513ea681a8b376c4df3f4f846f92201c1.zip
prefs: pass strings by reference. Also cleans up a comma in gr_modtool that made a string into a tuple (and C++ angry).
Diffstat (limited to 'gnuradio-core/src/lib/general/gr_prefs.i')
-rw-r--r--gnuradio-core/src/lib/general/gr_prefs.i22
1 files changed, 11 insertions, 11 deletions
diff --git a/gnuradio-core/src/lib/general/gr_prefs.i b/gnuradio-core/src/lib/general/gr_prefs.i
index cfb4cdb4e..b21d47f3b 100644
--- a/gnuradio-core/src/lib/general/gr_prefs.i
+++ b/gnuradio-core/src/lib/general/gr_prefs.i
@@ -31,39 +31,39 @@ public:
/*!
* \brief Does \p section exist?
*/
- virtual bool has_section(const std::string section);
+ virtual bool has_section(const std::string &section);
/*!
* \brief Does \p option exist?
*/
- virtual bool has_option(const std::string section, const std::string option);
+ virtual bool has_option(const std::string &section, const std::string &option);
/*!
* \brief If option exists return associated value; else default_val.
*/
- virtual const std::string get_string(const std::string section,
- const std::string option,
- const std::string default_val);
+ virtual const std::string get_string(const std::string &section,
+ const std::string &option,
+ const std::string &default_val);
/*!
* \brief If option exists and value can be converted to bool, return it; else default_val.
*/
- virtual bool get_bool(const std::string section,
- const std::string option,
+ virtual bool get_bool(const std::string &section,
+ const std::string &option,
bool default_val);
/*!
* \brief If option exists and value can be converted to long, return it; else default_val.
*/
- virtual long get_long(const std::string section,
- const std::string option,
+ virtual long get_long(const std::string &section,
+ const std::string &option,
long default_val);
/*!
* \brief If option exists and value can be converted to double, return it; else default_val.
*/
- virtual double get_double(const std::string section,
- const std::string option,
+ virtual double get_double(const std::string &section,
+ const std::string &option,
double default_val);
};