mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
16 lines
349 B
C++
16 lines
349 B
C++
#pragma once
|
|
|
|
class ILexer
|
|
{
|
|
public:
|
|
|
|
ILexer() = default;
|
|
virtual ~ILexer() = default;
|
|
ILexer(const ILexer& other) = default;
|
|
ILexer(ILexer&& other) noexcept = default;
|
|
ILexer& operator=(const ILexer& other) = default;
|
|
ILexer& operator=(ILexer&& other) noexcept = default;
|
|
|
|
virtual void PopTokens(int amount) = 0;
|
|
};
|