pgLab/pglablib/sqlast/StringLiteral.cpp

8 lines
145 B
C++
Raw Normal View History

#include "StringLiteral.h"
using namespace sqlast;
StringLiteral::StringLiteral(const std::string s)
: value(QString::fromStdString(s))
{}