summaryrefslogtreecommitdiffstats
path: root/lib/CommLayer/Observer.h
blob: 928c78a34611a92913a0298322664d8c98071e7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef OBSERVER_H_
#define OBSERVER_H_

#include <string>
#include <iostream>
#include <stdint.h>
#include "DBusCommon.h"

class CObserver {
    public:
        virtual ~CObserver() {}
        virtual void Status(const std::string& pMessage, uint64_t pDest=0) = 0;
        virtual void Debug(const std::string& pMessage) = 0;
        virtual void Warning(const std::string& pMessage, uint64_t pDest=0) = 0;
};

#endif