mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
19 lines
436 B
C++
19 lines
436 B
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin III - PostgreSQL Tools
|
|
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// gqbObject.h -
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef HDOBJECT_H
|
|
#define HDOBJECT_H
|
|
|
|
class hdObject : public wxObject
|
|
{
|
|
public:
|
|
hdObject() {};
|
|
};
|
|
#endif
|