Merge pull request #2216 from jwillemsen/jwi-cxxversionchecks
[ACE_TAO.git] / ACE / apps / drwho / SML_Client.h
blob85575b0cfd08250a539a12a5bab9e8f773def17e
1 /* -*- C++ -*- */
3 //=============================================================================
4 /**
5 * @file SML_Client.h
7 * @author Douglas C. Schmidt
8 */
9 //=============================================================================
12 #ifndef _SML_CLIENT_H
13 #define _SML_CLIENT_H
15 #include "SM_Client.h"
16 #include "SML_Server.h"
18 class SML_Client : public SM_Client
20 public:
21 SML_Client ();
22 virtual ~SML_Client ();
23 virtual int receive (int timeout = 0);
24 virtual int send ();
26 private:
27 SML_Server sml_server;
28 int packet_length;
31 #endif /* _SML_CLIENT_H */