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

36 lines
722 B
C++

//////////////////////////////////////////////////////////////////////////
//
// pgScript - PostgreSQL Tools
//
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
//////////////////////////////////////////////////////////////////////////
#ifndef PGSBREAKSTMT_H_
#define PGSBREAKSTMT_H_
#include "pgscript/pgScript.h"
#include "pgscript/statements/pgsStmt.h"
class pgsBreakStmt : public pgsStmt
{
public:
pgsBreakStmt(pgsThread *app = 0);
virtual ~pgsBreakStmt();
virtual void eval(pgsVarMap &vars) const;
private:
pgsBreakStmt(const pgsBreakStmt &that);
pgsBreakStmt &operator=(const pgsBreakStmt &that);
};
#endif /*PGSBREAKSTMT_H_*/