wip
This commit is contained in:
parent
0da32b916c
commit
698ccab6ab
20 changed files with 265 additions and 37 deletions
|
|
@ -1,7 +1,13 @@
|
|||
#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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue