pgLab/pglablib/sqlast/Statement.h

14 lines
135 B
C
Raw Normal View History

#pragma once
#include "Node.h"
namespace sqlast {
class Statement: public Node
{
public:
Statement();
};
}