wip: application class

This commit is contained in:
2023-08-07 13:27:25 +04:00
parent 78c202a9d6
commit e3825b341d
5 changed files with 223 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ public:
bool IsFull() { return m_is_full; }
bool IsEmpty() { return m_is_empty; }
std::size_t GetSize();
std::size_t GetCapacity() { return m_size; }
void Reset();
void Write(T* data, size_t count);
bool Read(T* output, size_t count);