diff options
Diffstat (limited to 'src/Protocol/DataSender.h')
-rw-r--r-- | src/Protocol/DataSender.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Protocol/DataSender.h b/src/Protocol/DataSender.h new file mode 100644 index 000000000..64d5007ab --- /dev/null +++ b/src/Protocol/DataSender.h @@ -0,0 +1,8 @@ +#pragma once + +class cDataSender +{ +public: + virtual ~cDataSender() = default; + virtual void SendData(const char * a_DataToSend, size_t a_Size) = 0; +}; |