blob: 979823d38a09e9c471748ddead11b38062c1c6cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef COMMLAYERSERVERDBUS_H_
#define COMMLAYERSERVERDBUS_H_
#include "CommLayerServer.h"
class CCommLayerServerDBus
: public CCommLayerServer
{
public:
CCommLayerServerDBus();
virtual ~CCommLayerServerDBus();
/* DBus signal senders */
virtual void Crash(const std::string& progname, const std::string& uid);
virtual void JobStarted(const char* pDest);
virtual void JobDone(const char* pDest, const char* pUUID);
virtual void Error(const std::string& arg1);
virtual void Update(const std::string& pMessage, uint64_t pJobID);
virtual void Warning(const std::string& pMessage);
virtual void Warning(const std::string& pMessage, uint64_t pJobID);
};
#endif
|