13 lines
250 B
C++
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);
|
|
}
|