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