start working on 0.7.x branch
- added FileLog which stores content to the file log - now Log is only a wrapper - it puts messages to the local buffer and when logsave is used then the buffer is put to FileLog - new base classes: WinixBase (Log, Config*, Synchro*) WinixModel : public WinixBase (morm::ModelConnector*, Plugin*) WinixSystem : public WinixModel (System*) WinixRequest : public WinixSystem (SLog, Cur*) - singletons: log, slog, plugin are depracated - now references to them are in base classses (WinixBase, WinixModel) - DbBase, DbConn and Db are depracated - now we are using Morm project (in WinixModel there is a model_connector pointer) each thread will have its own ModelConnector git-svn-id: svn://ttmath.org/publicrep/winix/branches/0.7.x@1146 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
@@ -40,6 +40,9 @@
|
||||
#include "notifypool.h"
|
||||
#include "templates/patterns.h"
|
||||
#include "notifythread.h"
|
||||
#include "core/winixmodel.h"
|
||||
|
||||
|
||||
|
||||
namespace Winix
|
||||
{
|
||||
@@ -50,19 +53,21 @@ class Config;
|
||||
class Users;
|
||||
class Dirs;
|
||||
class ThreadManager;
|
||||
class FileLog;
|
||||
|
||||
|
||||
class Notify
|
||||
class Notify : public WinixModel
|
||||
{
|
||||
public:
|
||||
|
||||
Notify();
|
||||
|
||||
void SetCur(Cur * pcur);
|
||||
void SetConfig(Config * pconfig);
|
||||
//void SetConfig(Config * pconfig);
|
||||
void SetUsers(Users * pusers);
|
||||
void SetDirs(Dirs * pdirs);
|
||||
void SetThreadManager(ThreadManager * pmanager);
|
||||
//void SetFileLog(FileLog * file_log);
|
||||
|
||||
void Init();
|
||||
|
||||
@@ -77,9 +82,10 @@ public:
|
||||
private:
|
||||
|
||||
Cur * cur;
|
||||
Config * config;
|
||||
//Config * config;
|
||||
Dirs * dirs;
|
||||
Users * users;
|
||||
//FileLog * file_log;
|
||||
ThreadManager * thread_manager;
|
||||
|
||||
NotifyThread notify_thread;
|
||||
|
||||
Reference in New Issue
Block a user