]> Dogcows Code - chaz/openbox/blobdiff - src/Util.hh
dont reconfigure during startup. thats a waste and screws up stuff!
[chaz/openbox] / src / Util.hh
index 1536226ca86b532f6bf51cf0598bc2a2bfb5aafc..a0acd4cd758bcf3147225117e1ba5987a2a1db69 100644 (file)
@@ -99,4 +99,11 @@ 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.022383 seconds and 4 git commands to generate.