2
0
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:
Jan
2021-03-08 20:06:34 +01:00
parent d96f813e73
commit 8d9080066f
39 changed files with 54 additions and 3 deletions

View 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;
};