pgadmin3/include/slony/dlgRepPath.h
levinsv 4af765213c support PG11
Поддержка PostgreSQL 11 только для Windows
2018-10-10 22:59:25 +05:00

45 lines
874 B
C++

//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// dlgRepPath.h - Slony-I path property
//
//////////////////////////////////////////////////////////////////////////
#ifndef __DLG_REPPATHPROP
#define __DLG_REPPATHPROP
#include "slony/dlgRepProperty.h"
class slNode;
class slPath;
class dlgRepPath : public dlgRepProperty
{
public:
dlgRepPath(pgaFactory *factory, frmMain *frame, slPath *p, slNode *n);
int Go(bool modal);
wxString GetHelpPage() const
{
return wxT("slony-path");
}
void CheckChange();
wxString GetSql();
pgObject *CreateObject(pgCollection *collection);
pgObject *GetObject();
private:
slPath *path;
slNode *node;
DECLARE_EVENT_TABLE()
};
#endif