pgLab/pglablib/sqlast/Node.cpp

13 lines
149 B
C++
Raw Normal View History

#include "Node.h"
using namespace sqlast;
Node::Node()
{
2022-04-07 19:35:29 +02:00
}
2022-04-07 19:35:29 +02:00
QString Node::ToString() const
{
return QString::fromUtf8(typeid(*this).name());
}