Merge pull request #2258 from likema/log-msg-reset-ostream
[ACE_TAO.git] / ACE / apps / drwho / PMC_All.h
blob196f8d3cb688a33dc6b30fdee930db07bf1a3a8e
1 /* -*- C++ -*- */
3 //=============================================================================
4 /**
5 * @file PMC_All.h
7 * @author Douglas C. Schmidt
8 */
9 //=============================================================================
12 #ifndef _PMC_ALL_H
13 #define _PMC_ALL_H
15 #include "PM_Client.h"
17 /**
18 * @class PMC_All
20 * @brief Provides the client's lookup table abstraction for `all' users...
22 class PMC_All : public PM_Client
24 protected:
25 virtual Protocol_Record *insert_protocol_info (Protocol_Record &protocol_record);
26 virtual int encode (char *packet, int &total_bytes);
27 virtual int decode (char *packet, int &total_bytes);
29 public:
30 PMC_All ();
31 virtual void process ();
34 #endif /* _PMC_ALL_H */