~ubuntu-branches/ubuntu/utopic/pgadmin3/utopic-proposed

« back to all changes in this revision

Viewing changes to src/include/dlgSequence.h

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Enrici
  • Date: 2004-12-14 23:46:39 UTC
  • Revision ID: james.westby@ubuntu.com-20041214234639-tve0i5l49fq13jli
Tags: upstream-1.2.0
ImportĀ upstreamĀ versionĀ 1.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//////////////////////////////////////////////////////////////////////////
 
2
//
 
3
// pgAdmin III - PostgreSQL Tools
 
4
// RCS-ID:      $Id: dlgSequence.h,v 1.7 2004/07/20 12:38:04 andreas Exp $
 
5
// Copyright (C) 2002 - 2004, The pgAdmin Development Team
 
6
// This software is released under the Artistic Licence
 
7
//
 
8
// dlgSequence.h - Sequence property 
 
9
//
 
10
//////////////////////////////////////////////////////////////////////////
 
11
 
 
12
 
 
13
#ifndef __DLG_SEQUENCEPROP
 
14
#define __DLG_SEQUENCEPROP
 
15
 
 
16
#include "dlgProperty.h"
 
17
 
 
18
class pgSchema;
 
19
class pgSequence;
 
20
 
 
21
class dlgSequence : public dlgSecurityProperty
 
22
{
 
23
public:
 
24
    dlgSequence(frmMain *frame, pgSequence *seq, pgSchema *sch);
 
25
    int Go(bool modal);
 
26
 
 
27
    void CheckChange();
 
28
    wxString GetSql();
 
29
    pgObject *CreateObject(pgCollection *collection);
 
30
    pgObject *GetObject();
 
31
 
 
32
private:
 
33
    pgSchema *schema;
 
34
    pgSequence *sequence;
 
35
 
 
36
    DECLARE_EVENT_TABLE();
 
37
};
 
38
 
 
39
 
 
40
#endif