mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-01-11 19:21:50 +00:00
Extract commonly used Parser code to new Parser component
This commit is contained in:
14
src/Parser/Parsing/IParser.h
Normal file
14
src/Parser/Parsing/IParser.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
class IParser
|
||||
{
|
||||
public:
|
||||
IParser() = default;
|
||||
virtual ~IParser() = default;
|
||||
IParser(const IParser& other) = default;
|
||||
IParser(IParser&& other) noexcept = default;
|
||||
IParser& operator=(const IParser& other) = default;
|
||||
IParser& operator=(IParser&& other) noexcept = default;
|
||||
|
||||
virtual bool Parse() = 0;
|
||||
};
|
||||
Reference in New Issue
Block a user