blob: deb67828800f5a4724c186e80cafa168b1abb8f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "defs.h"
#include <contrib/libs/antlr4_cpp_runtime/src/Vocabulary.h>
#include <string>
namespace NSQLComplete {
std::string Display(const antlr4::dfa::Vocabulary& vocabulary, TTokenId tokenType);
} // namespace NSQLComplete
|