source: trunk/FACT++/src/MessageDim.h@ 10278

Last change on this file since 10278 was 10274, checked in by tbretz, 14 years ago
Slight modification to logging output, by default now the output of unsuccessfull propagation via the dim service is suppressed.
File size: 768 bytes
Line 
1#ifndef FACT_MessageDim
2#define FACT_MessageDim
3
4#include "MessageImp.h"
5
6
7
8#include <dis.hxx> // DimService
9
10class MessageDimTX : public DimService, public MessageImp
11{
12private:
13 bool fDebug;
14
15public:
16 MessageDimTX(const std::string &name, std::ostream &out=std::cout);
17 ~MessageDimTX();
18
19 int Write(const Time &t, const char *txt, int qos=kInfo);
20
21 void SetDebug(bool b=true) { fDebug=b; }
22};
23
24
25
26#include <dic.hxx> // DimStampedInfo
27
28class MessageDimRX : public DimInfoHandler
29{
30protected:
31 MessageImp &fMsg;
32
33private:
34 DimStampedInfo fDimMessage;
35
36 int fMinLogLevel;
37
38protected:
39 void infoHandler();
40
41public:
42 MessageDimRX(const std::string &name, MessageImp &imp);
43
44 void SetMinLogLevel(int min=0) { fMinLogLevel=min; }
45};
46
47#endif
Note: See TracBrowser for help on using the repository browser.