HumanRender/human_render/Ipc/ReadCallback.h
2024-12-22 23:24:02 +08:00

9 lines
178 B
C++

#pragma once
class IReaderCallback {
public:
virtual ~IReaderCallback() = default;
// read thread callback
virtual void onRead(const char* buffer, unsigned int size) = 0;
};