diff options
author | William R. Otte <wotte@dre.vanderbilt.edu> | 2008-03-04 13:56:48 +0000 |
---|---|---|
committer | William R. Otte <wotte@dre.vanderbilt.edu> | 2008-03-04 13:56:48 +0000 |
commit | c4078c377d74290ebe4e66da0b4975da91732376 (patch) | |
tree | 1816ef391e42a07929304908ac0e21f4c2f6cb7b /ACE/apps/drwho/PM_Client.h | |
parent | 700d1c1a6be348c6c70a2085e559baeb8f4a62ea (diff) | |
download | ATCD-c4078c377d74290ebe4e66da0b4975da91732376.tar.gz |
swap in externals for ACE and TAO
Diffstat (limited to 'ACE/apps/drwho/PM_Client.h')
-rw-r--r-- | ACE/apps/drwho/PM_Client.h | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/ACE/apps/drwho/PM_Client.h b/ACE/apps/drwho/PM_Client.h deleted file mode 100644 index f44ab84f69f..00000000000 --- a/ACE/apps/drwho/PM_Client.h +++ /dev/null @@ -1,45 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// drwho -// -// = FILENAME -// PM_Client.h -// -// = AUTHOR -// Douglas C. Schmidt -// -// ============================================================================ - -#ifndef _PM_CLIENT_H -#define _PM_CLIENT_H - -#include "Protocol_Manager.h" - -class PM_Client : public Protocol_Manager -{ - // = TITLE - // Provides the client side of the friend manager lookup table abstraction. -public: - PM_Client (void); - virtual ~PM_Client (void); - - virtual int encode (char *packet, int &total_bytes) = 0; - virtual int decode (char *packet, int &total_bytes) = 0; - virtual void process (void); - -protected: - int max_key_length; - - virtual char *handle_protocol_entries (const char *cp, - const char *key_name1, - const char *key_name2 = 0); - - virtual Protocol_Record *insert_protocol_info (Protocol_Record &protocol_record); -}; - -#endif /* _PM_CLIENT_H */ - |