////////////////////////////////////////////////////////////////////////// // // 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; }