12 lines
149 B
C++
12 lines
149 B
C++
#include "Node.h"
|
|
|
|
using namespace sqlast;
|
|
|
|
Node::Node()
|
|
{
|
|
}
|
|
|
|
QString Node::ToString() const
|
|
{
|
|
return QString::fromUtf8(typeid(*this).name());
|
|
}
|