diff options
Diffstat (limited to '')
-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 | |||