updated to the new pikotools api - we have a logger for morm and ezc

pikotools has now Log and FileLog classes
which are base classes for winix Log and FileLog classes




git-svn-id: svn://ttmath.org/publicrep/winix/branches/0.7.x@1151 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2018-11-23 17:53:43 +00:00
parent 491dd27ebf
commit b90445de4a
35 changed files with 1163 additions and 1364 deletions

View File

@@ -39,6 +39,7 @@
#include <list>
#include "basethread.h"
#include "synchro.h"
#include "textstream/textstream.h"
namespace Winix
@@ -53,9 +54,6 @@ public:
ThreadManager();
// synchro object
//void SetSynchro(Synchro * psynchro);
// initializing
void Init();
@@ -82,7 +80,7 @@ private:
morm::JSONConnector json_connector;
morm::PostgreSQLConnector postgresql_connector;
TextStream<std::wstring> log_buffer;
PT::WTextStream log_buffer;
};
struct ThreadItem
@@ -94,7 +92,6 @@ private:
};
//Synchro * synchro;
typedef std::list<ThreadItem> ThreadTab;
ThreadTab thread_tab;
bool were_started;