pgadmin3/include/pgscript/expressions/pgsLines.h
2020-07-07 22:19:12 +05:00

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_*/