mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-18 06:05:51 -06:00
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin III - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// gqbTable.h - Table object for GQB
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef GQBTABLE_H
|
|
#define GQBTABLE_H
|
|
|
|
// App headers
|
|
#include "gqb/gqbObject.h"
|
|
#include "gqb/gqbBrowser.h"
|
|
#include "gqb/gqbObjectCollection.h"
|
|
|
|
class gqbColumn;
|
|
|
|
// Create Array Objects used as base for gqbCollections
|
|
class gqbTable : public gqbObjectCollection
|
|
{
|
|
public:
|
|
gqbTable(gqbObject *parent, wxString name, pgConn *connection, type_gqbObject type, OID oid);
|
|
void createObjects(gqbBrowser *_tablesBrowser, pgConn *_conn, OID oidVal, wxTreeItemId parentNode);
|
|
gqbIteratorBase *createColumnsIterator();
|
|
int countCols();
|
|
gqbColumn *getColumnAtIndex(int index);
|
|
int indexColumn(gqbColumn *col);
|
|
|
|
private:
|
|
void addColumn(gqbColumn *column); // Used only as synonym for gqbObjectCollection addObject
|
|
void createColumns(pgConn *conn, gqbBrowser *tablesBrowser, wxTreeItemId parentNode, OID oidVal);
|
|
|
|
};
|
|
#endif
|