18 lines
235 B
C++
18 lines
235 B
C++
#pragma once
|
|
|
|
#include "ast_node.hpp"
|
|
#include "identifier.hpp"
|
|
|
|
namespace ast
|
|
{
|
|
|
|
struct Distinct : public AstNode<Distinct>
|
|
{
|
|
Distinct(Identifier* identifier)
|
|
: identifier(identifier) {}
|
|
|
|
Identifier* identifier;
|
|
};
|
|
|
|
}
|