mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-07 21:38:01 -05:00
13 lines
299 B
C++
13 lines
299 B
C++
#pragma once
|
|
|
|
#include "Parsing/IParserLineStream.h"
|
|
|
|
class CommentRemovingStreamProxy final : IParserLineStream
|
|
{
|
|
public:
|
|
std::string NextLine() override;
|
|
bool IncludeFile(const std::string& filename) override;
|
|
bool IsOpen() const override;
|
|
_NODISCARD bool Eof() const override;
|
|
};
|