mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-22 17:15:46 +00:00
16 lines
406 B
C++
16 lines
406 B
C++
#pragma once
|
|
|
|
#include "Parsing/Impl/ParserMultiInputStream.h"
|
|
#include "SearchPath/ISearchPath.h"
|
|
|
|
class SearchPathMultiInputStream : public IInclusionCallback
|
|
{
|
|
public:
|
|
explicit SearchPathMultiInputStream(ISearchPath& searchPath);
|
|
|
|
std::unique_ptr<std::istream> OpenIncludedFile(const std::string& filename, const std::string& sourceFile) override;
|
|
|
|
protected:
|
|
ISearchPath& m_search_path;
|
|
};
|