pgadmin3/pgscript/statements/pgsStmt.cpp
2020-07-07 22:19:12 +05:00

33 lines
567 B
C++

//////////////////////////////////////////////////////////////////////////
//
// pgScript - PostgreSQL Tools
//
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
//////////////////////////////////////////////////////////////////////////
#include "pgAdmin3.h"
#include "pgscript/statements/pgsStmt.h"
pgsStmt::pgsStmt(pgsThread *app) :
m_line(0), m_app(app)
{
}
pgsStmt::~pgsStmt()
{
}
void pgsStmt::set_position(int line)
{
m_line = line;
}
int pgsStmt::line() const
{
return m_line;
}