pgLab/pglablib/catalog/PgLanguage.cpp

12 lines
241 B
C++
Raw Normal View History

#include "PgLanguage.h"
QString PgLanguage::createSql() const
{
throw std::exception("PgLanguage::createSql() not implemented");
}
QString PgLanguage::dropSql() const
{
throw std::exception("PgLanguage::dropSql() not implemented");
}