]> git.stg.codes - stg.git/commitdiff
Ticket. GetChangePolicyTimeout() function added.
authorElena Mamontova <helenh463@gmail.com>
Tue, 1 Nov 2016 14:05:49 +0000 (16:05 +0200)
committerElena Mamontova <helenh463@gmail.com>
Tue, 1 Nov 2016 14:05:49 +0000 (16:05 +0200)
stglibs/srvconf.lib/parsers/get_tariff.cpp

index 4844fd6c77fdbec69de28fe50aa46321c2414e6f..0b96bec3b8e234aced6461e2647fe8ea590d7600 100644 (file)
@@ -116,6 +116,15 @@ else
 return true;
 }
 
+template <typename T>
+bool GetChangePolicyTimeout(const char ** attr, T & value, const std::string & attrName)
+{
+if (!CheckValue(attr, attrName))
+    return false;
+value = readTime(attr[1]);
+return true;
+}
+
 template <typename A, typename T>
 bool GetSlashedValue(const char ** attr, A & array, T A::value_type:: * field)
 {