From 50dd460655e0ab563de388bad37d3f678ffbb3b4 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 20 Mar 2007 23:13:52 +0000 Subject: Minor updates to the Hash and FString, Hash got a getKeys function, and FString got the more normal getStr and getSize functions. --- src/serializerconnection.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/serializerconnection.h (limited to 'src/serializerconnection.h') diff --git a/src/serializerconnection.h b/src/serializerconnection.h new file mode 100644 index 0000000..85ee84d --- /dev/null +++ b/src/serializerconnection.h @@ -0,0 +1,23 @@ +#ifndef SERIALIZER_CONNECTION_H +#define SERIALIZER_CONNECTION_H + +#include + +#include "serializer.h" + +/** + * + */ +class SerializerConnection : public Serializer +{ +public: + SerializerConnection( Connection *pCon, int nTimeSec, int nTimeUSec ); + virtual ~SerializerConnection(); + +private: + Connection *pCon; + int nTimeSec; + int nTimeUSec; +}; + +#endif -- cgit v1.2.3