summaryrefslogtreecommitdiff
path: root/apps/drwho/PM_Client.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-03-05 17:14:45 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-03-05 17:14:45 +0000
commit58033491c6d0bac82315c1fdb1ec9b39be58093f (patch)
treec69c3aa67ec66758066e959bd0d533ea336ec236 /apps/drwho/PM_Client.h
parent2efc882384a34f61311a24fc641d1b5fd5776356 (diff)
downloadATCD-TAO-1_5.tar.gz
This commit was manufactured by cvs2svn to create tag 'TAO-1_5'.TAO-1_5
Diffstat (limited to 'apps/drwho/PM_Client.h')
-rw-r--r--apps/drwho/PM_Client.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/apps/drwho/PM_Client.h b/apps/drwho/PM_Client.h
deleted file mode 100644
index f44ab84f69f..00000000000
--- a/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 */
-