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

38 lines
789 B
C++

//////////////////////////////////////////////////////////////////////////
//
// pgScript - PostgreSQL Tools
//
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
//////////////////////////////////////////////////////////////////////////
#ifndef PGSOVER_H_
#define PGSOVER_H_
#include "pgscript/pgScript.h"
#include "pgscript/expressions/pgsOperation.h"
class pgsOver : public pgsOperation
{
public:
pgsOver(const pgsExpression *left, const pgsExpression *right);
virtual ~pgsOver();
virtual pgsExpression *clone() const;
pgsOver(const pgsOver &that);
pgsOver &operator =(const pgsOver &that);
virtual wxString value() const;
virtual pgsOperand eval(pgsVarMap &vars) const;
};
#endif /*PGSOVER_H_*/