mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
29 lines
732 B
C++
29 lines
732 B
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin III - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// gqbColumn.cpp - Column Object for GQB
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// App headers
|
|
#include "pgAdmin3.h"
|
|
|
|
// wxWindows headers
|
|
#include <wx/wx.h>
|
|
|
|
// App headers
|
|
#include "gqb/gqbColumn.h"
|
|
#include "gqb/gqbObject.h"
|
|
#include "gqb/gqbSchema.h"
|
|
#include "gqb/gqbTable.h"
|
|
#include "gqb/gqbArrayCollection.h"
|
|
|
|
gqbColumn::gqbColumn(gqbObject *parent, wxString name, pgConn *connection):
|
|
gqbObject(name, parent, connection)
|
|
{
|
|
setType(GQB_COLUMN);
|
|
}
|