pgadmin3/include/gqb/gqbColumn.h
2020-07-07 22:19:12 +05:00

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