mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-09-22 22:07:08 +00:00
chore: parse includes and assetlists while parsing zone definition
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#include "ISearchPath.h"
|
||||
|
||||
bool SearchPathOpenFile::IsOpen() const
|
||||
{
|
||||
return m_stream != nullptr;
|
||||
}
|
||||
|
||||
SearchPathOpenFile::SearchPathOpenFile()
|
||||
: m_length(0)
|
||||
{
|
||||
}
|
||||
|
||||
SearchPathOpenFile::SearchPathOpenFile(std::unique_ptr<std::istream> stream, const int64_t length)
|
||||
: m_stream(std::move(stream)),
|
||||
m_length(length)
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user