mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 22:02:24 -06:00
42 lines
811 B
C++
42 lines
811 B
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgScript - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#ifndef PGSLINES_H_
|
|
#define PGSLINES_H_
|
|
|
|
#include "pgscript/pgScript.h"
|
|
#include "pgscript/expressions/pgsExpression.h"
|
|
|
|
class pgsLines : public pgsExpression
|
|
{
|
|
|
|
private:
|
|
|
|
wxString m_name;
|
|
|
|
public:
|
|
|
|
pgsLines(const wxString &name);
|
|
|
|
virtual ~pgsLines();
|
|
|
|
/* pgsLines(const pgsLines & that); */
|
|
|
|
/* pgsLines & operator=(const pgsLines & that); */
|
|
|
|
virtual pgsExpression *clone() const;
|
|
|
|
virtual wxString value() const;
|
|
|
|
virtual pgsOperand eval(pgsVarMap &vars) const;
|
|
|
|
};
|
|
|
|
#endif /*PGSLINES_H_*/
|