summaryrefslogtreecommitdiff
path: root/lib/server/ProtocolObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/server/ProtocolObject.h')
-rw-r--r--lib/server/ProtocolObject.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/lib/server/ProtocolObject.h b/lib/server/ProtocolObject.h
deleted file mode 100644
index 0a127ab5..00000000
--- a/lib/server/ProtocolObject.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// --------------------------------------------------------------------------
-//
-// File
-// Name: ProtocolObject.h
-// Purpose: Protocol object base class
-// Created: 2003/08/19
-//
-// --------------------------------------------------------------------------
-
-#ifndef PROTOCOLOBJECT__H
-#define PROTOCOLOBJECT__H
-
-class Protocol;
-
-// --------------------------------------------------------------------------
-//
-// Class
-// Name: ProtocolObject
-// Purpose: Basic object representation of objects to pass through a Protocol session
-// Created: 2003/08/19
-//
-// --------------------------------------------------------------------------
-class ProtocolObject
-{
-public:
- ProtocolObject();
- virtual ~ProtocolObject();
- ProtocolObject(const ProtocolObject &rToCopy);
-
- // Info about this object
- virtual int GetType() const;
- virtual bool IsError(int &rTypeOut, int &rSubTypeOut) const;
- virtual bool IsConversationEnd() const;
-
- // reading and writing with Protocol objects
- virtual void SetPropertiesFromStreamData(Protocol &rProtocol);
- virtual void WritePropertiesToStreamData(Protocol &rProtocol) const;
-};
-
-#endif // PROTOCOLOBJECT__H
-