]> git.stg.codes - stg.git/commitdiff
Add function declarations and inlining
authorMaxim Mamontov <faust.madf@gmail.com>
Sun, 13 Nov 2011 20:51:19 +0000 (22:51 +0200)
committerMaxim Mamontov <faust.madf@gmail.com>
Sun, 13 Nov 2011 20:51:19 +0000 (22:51 +0200)
stglibs/common.lib/include/stg/common.h

index ac0911472778ea25e543acd883341a4f2437b7e7..df93815215e4f32a8fd85e5882967f218116c555 100644 (file)
@@ -107,8 +107,16 @@ int ParseYesNo(const std::string & str, bool * val);
 
 bool WaitPackets(int sd);
 
+template <typename varT>
+int str2x(const std::string & str, varT & x);
+template <typename varT>
+const std::string & x2str(varT x, std::string & s);
+template <typename varT>
+const std::string & unsigned2str(varT x, std::string & s);
+
 //-----------------------------------------------------------------------------
 template <typename varT>
+inline
 int str2x(const std::string & str, varT & x)
 {
     int pos = 0;
@@ -146,6 +154,7 @@ int str2x(const std::string & str, varT & x)
 }
 //-----------------------------------------------------------------------------
 template <typename varT>
+inline
 const std::string & x2str(varT x, std::string & s)
 {
     varT xx = x;
@@ -191,6 +200,7 @@ const std::string & x2str(varT x, std::string & s)
 }
 //-----------------------------------------------------------------------------
 template <typename varT>
+inline
 const std::string & unsigned2str(varT x, std::string & s)
 {
     varT xx = x;