- Note
- This Source File belongs to 7GUIs Cells Example. Please follow the link for example explanation.
#pragma once
#include <AUI/Common/AObject.h>
#include "AUI/Util/ATokenizer.h"
namespace token {
struct Identifier {
};
struct Double {
double value;
};
struct Semicolon {};
struct LPar {};
struct RPar {};
struct Colon {};
struct Plus {};
struct Minus {};
struct Asterisk {};
struct Slash {};
struct LAngle {};
struct RAngle {};
struct StringLiteral {
};
using Any = std::variant<Identifier, Double, Semicolon, LPar, RPar, Colon, Plus, Minus, Asterisk, Slash, LAngle, RAngle, StringLiteral>;
}
Represents a Unicode character string.
Definition AString.h:38
A std::vector with AUI extensions.
Definition AVector.h:39
Does not allow escaping, allowing to accept lvalue ref, rvalue ref, shared_ptr and etc without overhe...
Definition values.h:128