mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 16:45:44 +00:00
23 lines
609 B
C++
23 lines
609 B
C++
#pragma once
|
|
|
|
#include "Utils/ClassUtils.h"
|
|
|
|
enum class DeclarationModifierType
|
|
{
|
|
POINTER,
|
|
ARRAY
|
|
};
|
|
|
|
class DeclarationModifier
|
|
{
|
|
public:
|
|
DeclarationModifier() = default;
|
|
virtual ~DeclarationModifier() = default;
|
|
DeclarationModifier(const DeclarationModifier& other) = default;
|
|
DeclarationModifier(DeclarationModifier&& other) noexcept = default;
|
|
DeclarationModifier& operator=(const DeclarationModifier& other) = default;
|
|
DeclarationModifier& operator=(DeclarationModifier&& other) noexcept = default;
|
|
|
|
[[nodiscard]] virtual DeclarationModifierType GetType() const = 0;
|
|
};
|