From 0305cbdc3ae8525c74b2bb9b23884035549e3407 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sun, 26 May 2002 20:25:38 +0000 Subject: add Configuration class for generic configuration data load/save-ing. use Configuration class throughout code. no longer save rc file on exit, save when any options are changed. --- src/Util.hh | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/Util.hh') diff --git a/src/Util.hh b/src/Util.hh index 1536226c..2a40308d 100644 --- a/src/Util.hh +++ b/src/Util.hh @@ -99,4 +99,13 @@ struct PointerAssassin { } }; +std::string itostring(unsigned long i); +std::string itostring(long i); +inline std::string itostring(unsigned int i) { + return itostring((unsigned long) i); +} +inline std::string itostring(int i) { + return itostring((long) i); +} + #endif -- cgit v1.2.3