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