removed: Done class (core/done.h, core/done.cpp)

removed: from Session: done, done_status, timers



git-svn-id: svn://ttmath.org/publicrep/winix/trunk@594 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2010-02-28 21:33:06 +00:00
parent 71a63cc70e
commit ebd868fa33
128 changed files with 387 additions and 915 deletions

View File

@@ -2,7 +2,7 @@
* This file is a part of Winix
* and is not publicly distributed
*
* Copyright (c) 2008-2009, Tomasz Sowa
* Copyright (c) 2008-2010, Tomasz Sowa
* All rights reserved.
*
*/
@@ -11,7 +11,6 @@
#define headerfilecmslucoresession
#include <ctime>
#include "done.h"
#include "item.h"
#include "error.h"
#include "user.h"
@@ -46,15 +45,6 @@ struct Session
// if false the session will end when the user browser is shutdown
bool remember_me;
// what is done
Done done;
Error done_status;
int done_timer;
// used for many purposes, depending on 'done'
Item item;
// rebus - set by rebus_question(Info & i) from templates
Rebus::Item * rebus_item;
@@ -72,8 +62,6 @@ struct Session
bool operator==(const Session & s) const;
bool operator<(const Session & s) const;
void DecTimer(int & timer);
void CheckTimers();
void IncrementTimersIfExist();
};