summaryrefslogtreecommitdiffstats
path: root/lib/CommLayer/Observer.h
blob: 5c983949116c4b9c0114bcbc4d44d63adf8ced9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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 Warning(const std::string& pMessage, uint64_t pDest=0) = 0;
};

#endif