]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MONITOR/alistoragemanager/AliStorageServerThread.h
List event tab embedded in left panel of ED + other minor changes.
[u/mrichter/AliRoot.git] / MONITOR / alistoragemanager / AliStorageServerThread.h
CommitLineData
5eb34a26 1#ifndef AliStorageServerThread_H
2#define AliStorageServerThread_H
3
4#include "AliStorageEventManager.h"
5#include "AliStorageDatabase.h"
6
7class AliStorageServerThread
8{
9public:
10 AliStorageServerThread();
11 ~AliStorageServerThread();
12private:
5eb34a26 13 void StartCommunication();
5eb34a26 14 bool MarkEvent(struct eventStruct event);
15
16 //connection to database and storage
17 AliStorageDatabase *fDatabase;
18 std::string fStoragePath;
19
20 AliStorageServerThread(const AliStorageServerThread&);
21 AliStorageServerThread& operator=(const AliStorageServerThread&);
22};
23
24#endif