bool GetTimeSpan(const char ** attr, DIRPRICE_DATA & value, const std::string & attrName)
{
-int hb = 0;
-int mb = 0;
-int he = 0;
-int me = 0;
if (CheckValue(attr, attrName))
+ {
+ int hb = 0;
+ int mb = 0;
+ int he = 0;
+ int me = 0;
if (ParseTariffTimeStr(attr[1], hb, mb, he, me) == 0)
{
value.hDay = hb;
value.mNight = me;
return true;
}
+ }
return false;
}
{
if (!CheckValue(attr, attrName))
return false;
-std::string type(attr[1]);
-if (type == "up")
- value = TRAFF_UP;
-else if (type == "down")
- value = TRAFF_DOWN;
-else if (type == "up+down")
- value = TRAFF_UP_DOWN;
-else if (type == "max")
- value = TRAFF_MAX;
-else
- return false;
+value = TARIFF::StringToTraffType(attr[1]);
return true;
}