mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-25 22:03:16 -06:00
25 lines
640 B
C++
25 lines
640 B
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin III - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// gqbColumn.h - Column Object for GQB
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef GQBCOLUMN_H
|
|
#define GQBCOLUMN_H
|
|
|
|
// App headers
|
|
#include "gqb/gqbObject.h"
|
|
#include "gqb/gqbTable.h"
|
|
|
|
// Create Array Objects used as base for gqbCollections
|
|
class gqbColumn : public gqbObject
|
|
{
|
|
public:
|
|
gqbColumn(gqbObject *parent, wxString name, pgConn *connection);
|
|
};
|
|
#endif
|