/* * TLS Handshake Message * (C) 2012 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_TLS_HANDSHAKE_MSG_H__ #define BOTAN_TLS_HANDSHAKE_MSG_H__ #include #include #include namespace Botan { namespace TLS { /** * TLS Handshake Message Base Class */ class BOTAN_DLL Handshake_Message { public: virtual Handshake_Type type() const = 0; virtual std::vector serialize() const = 0; virtual ~Handshake_Message() {} }; } } #endif