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

12 lines
149 B
C++

#include "Node.h"
using namespace sqlast;
Node::Node()
{
}
QString Node::ToString() const
{
return QString::fromUtf8(typeid(*this).name());
}