X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/8c6fa3fbaccc22127280bf77a48fab5a3ee0716e..46b0747592074017ff0ea4b33d4a7194235886e5:/stglibs/common.lib/include/stg/blockio.h diff --git a/stglibs/common.lib/include/stg/blockio.h b/stglibs/common.lib/include/stg/blockio.h deleted file mode 100644 index 3879e39e..00000000 --- a/stglibs/common.lib/include/stg/blockio.h +++ /dev/null @@ -1,43 +0,0 @@ -#ifndef __STG_STGLIBS_BLOCK_IO_H__ -#define __STG_STGLIBS_BLOCK_IO_H__ - -#include - -#include - -namespace STG -{ - -typedef std::vector IOVec; - -class BlockReader -{ - public: - BlockReader(const IOVec& ioVec); - - bool read(int socket); - bool done() const { return m_remainder == 0; } - size_t remainder() const { return m_remainder; } - - private: - IOVec m_dest; - size_t m_remainder; -}; - -class BlockWriter -{ - public: - BlockWriter(const IOVec& ioVec); - - bool write(int socket); - bool done() const { return m_remainder == 0; } - size_t remainder() const { return m_remainder; } - - private: - IOVec m_source; - size_t m_remainder; -}; - -} // namespace STG - -#endif