mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
33 lines
567 B
C++
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;
|
|
}
|