Link CMemoryInStream.cpp

This commit is contained in:
2022-07-19 23:19:07 -07:00
parent 6acf3a1278
commit 437b1dd3a6
9 changed files with 26 additions and 15 deletions

View File

@@ -1,13 +1,13 @@
#ifndef _CMEMORYINSTREAM_HPP
#define _CMEMORYINSTREAM_HPP
#include "CInputStream.hpp"
#include "Kyoto/Streams/CInputStream.hpp"
class CMemoryInStream : public CInputStream {
public:
enum EOwnerShip {
NotOwned,
Owned,
kOS_NotOwned,
kOS_Owned,
};
CMemoryInStream(const void* ptr, unsigned long len);