diff options
Diffstat (limited to 'src/tls/tls_handshake_msg.h')
-rw-r--r-- | src/tls/tls_handshake_msg.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/src/tls/tls_handshake_msg.h b/src/tls/tls_handshake_msg.h deleted file mode 100644 index 1c44554d3..000000000 --- a/src/tls/tls_handshake_msg.h +++ /dev/null @@ -1,36 +0,0 @@ -/* -* TLS Handshake Message -* (C) 2012 Jack Lloyd -* -* Released under the terms of the Botan license -*/ - -#ifndef BOTAN_TLS_HANDSHAKE_MSG_H__ -#define BOTAN_TLS_HANDSHAKE_MSG_H__ - -#include <botan/tls_magic.h> -#include <vector> -#include <string> - -namespace Botan { - -namespace TLS { - -/** -* TLS Handshake Message Base Class -*/ -class BOTAN_DLL Handshake_Message - { - public: - virtual Handshake_Type type() const = 0; - - virtual std::vector<byte> serialize() const = 0; - - virtual ~Handshake_Message() {} - }; - -} - -} - -#endif |