aboutsummaryrefslogtreecommitdiff
path: root/src/serializerconnection.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-03-20 23:13:52 +0000
committerMike Buland <eichlan@xagasoft.com>2007-03-20 23:13:52 +0000
commit50dd460655e0ab563de388bad37d3f678ffbb3b4 (patch)
treefe79c205433e2de48095d81e2a03fb5f9ffca078 /src/serializerconnection.h
parent2b8255fabce194b35f7b2a350fd08f43d1e698a6 (diff)
downloadlibbu++-50dd460655e0ab563de388bad37d3f678ffbb3b4.tar.gz
libbu++-50dd460655e0ab563de388bad37d3f678ffbb3b4.tar.bz2
libbu++-50dd460655e0ab563de388bad37d3f678ffbb3b4.tar.xz
libbu++-50dd460655e0ab563de388bad37d3f678ffbb3b4.zip
Minor updates to the Hash and FString, Hash got a getKeys function, and FString
got the more normal getStr and getSize functions.
Diffstat (limited to '')
-rw-r--r--src/serializerconnection.h23
1 files changed, 23 insertions, 0 deletions
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 @@
1#ifndef SERIALIZER_CONNECTION_H
2#define SERIALIZER_CONNECTION_H
3
4#include <stdint.h>
5
6#include "serializer.h"
7
8/**
9 *
10 */
11class SerializerConnection : public Serializer
12{
13public:
14 SerializerConnection( Connection *pCon, int nTimeSec, int nTimeUSec );
15 virtual ~SerializerConnection();
16
17private:
18 Connection *pCon;
19 int nTimeSec;
20 int nTimeUSec;
21};
22
23#endif