pgLab/pglablib/sqlast/StringLiteral.h

21 lines
355 B
C
Raw Permalink Normal View History

#pragma once
#include "Literal.h"
#include <QString>
#include <string>
namespace sqlast {
class StringLiteral : public Literal
{
public:
explicit StringLiteral(const std::string s);
QString GetValue() const { return value; }
2022-04-07 19:35:29 +02:00
void Accept(NodeVisitor &visitor) override;
private:
QString value;
};
}