updated: to the new Pikotools API

ConfParser is now SpaceParser
added:   to SessionManager
         Session * SessionManager::FindSession(long id)



git-svn-id: svn://ttmath.org/publicrep/winix/trunk@831 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2012-04-30 22:53:54 +00:00
parent fc33b4f882
commit c94b0311b6
38 changed files with 946 additions and 1009 deletions

View File

@@ -232,13 +232,13 @@ bool DbBase::AssertValueSpace(PGresult * r, int row, int col, PT::Space & space,
conf_parser.SetSpace(space);
space.Clear();
PT::ConfParser::Status status = conf_parser.ParseString(res);
PT::SpaceParser::Status status = conf_parser.ParseString(res);
if( status != PT::ConfParser::ok )
if( status != PT::SpaceParser::ok )
{
log << log1 << "Db: a problem with parsing a PT::Space";
if( status == PT::ConfParser::syntax_error )
if( status == PT::SpaceParser::syntax_error )
log << ", syntax error at line: " << conf_parser.line;
log << logend;