mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 08:35:43 +00:00
15 lines
341 B
C++
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;
|
|
};
|