HumanRender/human_render/Ipc/ReadCallback.h

9 lines
178 B
C
Raw Normal View History

2024-12-22 15:24:02 +00:00
#pragma once
class IReaderCallback {
public:
virtual ~IReaderCallback() = default;
// read thread callback
virtual void onRead(const char* buffer, unsigned int size) = 0;
};