diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-03-20 23:13:52 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-03-20 23:13:52 +0000 |
commit | 50dd460655e0ab563de388bad37d3f678ffbb3b4 (patch) | |
tree | fe79c205433e2de48095d81e2a03fb5f9ffca078 /src/serializerconnection.cpp | |
parent | 2b8255fabce194b35f7b2a350fd08f43d1e698a6 (diff) | |
download | libbu++-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 'src/serializerconnection.cpp')
-rw-r--r-- | src/serializerconnection.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
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 @@ | |||
1 | #include "serializerconnection.h" | ||
2 | |||
3 | SerializerConnection::SerializerConnection( | ||
4 | Connection *pCon, int nTimeSec, int nTimeUSec ) : | ||
5 | pCon( pCon ), | ||
6 | nTimeSec( nTimeSec ), | ||
7 | nTimeUSec( nTimeUSec ) | ||
8 | { | ||
9 | } | ||
10 | |||
11 | SerializerConnection::~SerializerConnection() | ||
12 | { | ||
13 | } | ||
14 | |||