]> Dogcows Code - chaz/openbox/blobdiff - src/Util.hh
save workspace names properly with the new Configuration class.
[chaz/openbox] / src / Util.hh
index 1536226ca86b532f6bf51cf0598bc2a2bfb5aafc..2a40308d8c34ad84e44ca4d39b071df82ea16024 100644 (file)
@@ -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
This page took 0.022588 seconds and 4 git commands to generate.