pgLab/pglablib/sqlast/StringLiteral.cpp
2022-04-07 19:35:29 +02:00

13 lines
250 B
C++

#include "StringLiteral.h"
#include "NodeVisitor.h"
using namespace sqlast;
StringLiteral::StringLiteral(const std::string s)
: value(QString::fromStdString(s))
{}
void StringLiteral::Accept(NodeVisitor &visitor)
{
visitor.Visit(*this);
}