summaryrefslogtreecommitdiff
path: root/apps/drwho/Protocol_Record.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/drwho/Protocol_Record.h')
-rw-r--r--apps/drwho/Protocol_Record.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/apps/drwho/Protocol_Record.h b/apps/drwho/Protocol_Record.h
deleted file mode 100644
index 74d48b7494a..00000000000
--- a/apps/drwho/Protocol_Record.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// drwho
-//
-// = FILENAME
-// Protocol_Record.h
-//
-// = AUTHOR
-// Douglas C. Schmidt
-//
-// ============================================================================
-
-#if !defined (_PROTOCOL_RECORD_H)
-#define _PROTOCOL_RECORD_H
-
-#include "Drwho_Node.h"
-
-class Protocol_Record
-{
- // = TITLE
- // Stores information about a single friend's status.
-
-public:
- Protocol_Record (void);
- Protocol_Record (int use_dummy);
- Protocol_Record (const char *key_name1,
- Protocol_Record *next = 0);
- ~Protocol_Record (void);
- const char *get_host (void);
- const char *set_host (const char *str);
- const char *get_login (void);
- const char *set_login (const char *str);
- const char *get_real (void);
- const char *set_real (const char *str);
- Drwho_Node *get_drwho_list (void);
-
- static Drwho_Node drwho_node_;
- const char *key_name1_;
- const char *key_name2_;
- Drwho_Node *drwho_list_;
- Protocol_Record *next_;
- int is_active_;
-};
-
-#endif /* _PROTOCOL_RECORD_H */