]> git.stg.codes - stg.git/blobdiff - stglibs/common.lib/include/stg/common.h
Implemented some operations with tariffs.
[stg.git] / stglibs / common.lib / include / stg / common.h
index b4b53530d512a94cc4021ce954892218eba7c886..263cfe37a68b357aadfd2693845b8b2e65b62f92 100644 (file)
@@ -95,6 +95,7 @@ void            SwapBytes(int64_t & value);
 std::string &   TrimL(std::string & val);
 std::string &   TrimR(std::string & val);
 std::string &   Trim(std::string & val);
+std::string     Trim(const std::string & val);
 
 std::string     ToLower(const std::string & value);
 std::string     ToUpper(const std::string & value);
@@ -113,6 +114,8 @@ bool WaitPackets(int sd);
 //-----------------------------------------------------------------------------
 int str2x(const std::string & str, int32_t & x);
 int str2x(const std::string & str, uint32_t & x);
+inline
+int str2x(const std::string & str, double & x) { return strtodouble2(str.c_str(), x); }
 #ifndef WIN32
 int str2x(const std::string & str, int64_t & x);
 int str2x(const std::string & str, uint64_t & x);