diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-03-21 01:44:43 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-03-21 01:44:43 +0000 |
commit | ba6b756e8df15e4dcd2f948c91f073f99260f23a (patch) | |
tree | cf9f0412d3b232b93d4cc3810a193f62ca56ebc2 /src/serializerconnection.cpp | |
parent | 50dd460655e0ab563de388bad37d3f678ffbb3b4 (diff) | |
download | libbu++-ba6b756e8df15e4dcd2f948c91f073f99260f23a.tar.gz libbu++-ba6b756e8df15e4dcd2f948c91f073f99260f23a.tar.bz2 libbu++-ba6b756e8df15e4dcd2f948c91f073f99260f23a.tar.xz libbu++-ba6b756e8df15e4dcd2f948c91f073f99260f23a.zip |
Fixed it so it'd compile...
Diffstat (limited to '')
-rw-r--r-- | src/serializerconnection.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/serializerconnection.cpp b/src/serializerconnection.cpp index b2c545c..2934c8b 100644 --- a/src/serializerconnection.cpp +++ b/src/serializerconnection.cpp | |||
@@ -1,7 +1,8 @@ | |||
1 | #include "serializerconnection.h" | 1 | #include "serializerconnection.h" |
2 | 2 | ||
3 | SerializerConnection::SerializerConnection( | 3 | SerializerConnection::SerializerConnection( |
4 | Connection *pCon, int nTimeSec, int nTimeUSec ) : | 4 | Connection *pCon, bool bIO, int nTimeSec, int nTimeUSec ) : |
5 | Serializer( bIO ), | ||
5 | pCon( pCon ), | 6 | pCon( pCon ), |
6 | nTimeSec( nTimeSec ), | 7 | nTimeSec( nTimeSec ), |
7 | nTimeUSec( nTimeUSec ) | 8 | nTimeUSec( nTimeUSec ) |