mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-16 06:05:49 -06:00
45 lines
874 B
C++
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
|