reworked result codes, added new base type VTI (vaillant specific time), added support for replacement value for time types

This commit is contained in:
john30
2014-12-06 12:46:15 +01:00
parent 9cea334407
commit 15249302fb
6 changed files with 142 additions and 104 deletions
+1 -1
View File
@@ -614,7 +614,7 @@ public:
ifstream ifs;
ifs.open(filename.c_str(), ifstream::in);
if (ifs.is_open() == false)
return RESULT_ERR_FILENOTFOUND;
return RESULT_ERR_NOTFOUND;
string line;
unsigned int lineNo = 0;