diff options
Diffstat (limited to '')
| -rw-r--r-- | src/serializerconnection.h | 23 |
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 | */ | ||
| 11 | class SerializerConnection : public Serializer | ||
| 12 | { | ||
| 13 | public: | ||
| 14 | SerializerConnection( Connection *pCon, int nTimeSec, int nTimeUSec ); | ||
| 15 | virtual ~SerializerConnection(); | ||
| 16 | |||
| 17 | private: | ||
| 18 | Connection *pCon; | ||
| 19 | int nTimeSec; | ||
| 20 | int nTimeUSec; | ||
| 21 | }; | ||
| 22 | |||
| 23 | #endif | ||
