mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
28 lines
718 B
C++
28 lines
718 B
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin III - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// ddBrowserDataContainer.h - Item to contain data for each treview child.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef DDBROWSERDATACONTAINER_H
|
|
#define DDBROWSERDATACONTAINER_H
|
|
|
|
#include "hotdraw/figures/hdIFigure.h"
|
|
|
|
class ddBrowserDataContainer : public wxTreeItemData
|
|
{
|
|
public:
|
|
ddBrowserDataContainer(hdIFigure *data);
|
|
~ddBrowserDataContainer();
|
|
int getFigureKindId();
|
|
hdIFigure *getFigure();
|
|
|
|
private:
|
|
hdIFigure *figure;
|
|
};
|
|
#endif
|