mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-22 17:15:46 +00:00
15 lines
225 B
C++
15 lines
225 B
C++
#pragma once
|
|
|
|
#include "ILoadingStream.h"
|
|
|
|
class StreamProcessor : public ILoadingStream
|
|
{
|
|
protected:
|
|
ILoadingStream* m_base_stream;
|
|
|
|
public:
|
|
StreamProcessor();
|
|
|
|
void SetBaseStream(ILoadingStream* baseStream);
|
|
};
|