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.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/serializerconnection.cpp (limited to 'src/serializerconnection.cpp') diff --git a/src/serializerconnection.cpp b/src/serializerconnection.cpp new file mode 100644 index 0000000..b2c545c --- /dev/null +++ b/src/serializerconnection.cpp @@ -0,0 +1,14 @@ +#include "serializerconnection.h" + +SerializerConnection::SerializerConnection( + Connection *pCon, int nTimeSec, int nTimeUSec ) : + pCon( pCon ), + nTimeSec( nTimeSec ), + nTimeUSec( nTimeUSec ) +{ +} + +SerializerConnection::~SerializerConnection() +{ +} + -- cgit v1.2.3