2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-08 21:45:40 +00:00
2021-02-13 14:54:34 +01:00

15 lines
341 B
C++

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