pgadmin3/hotdraw/figures/hdAttribute.cpp
2020-07-07 22:19:12 +05:00

34 lines
705 B
C++

//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// hdAttributeFigure.cpp - Base class for all figure attributes
//
//////////////////////////////////////////////////////////////////////////
#include "pgAdmin3.h"
// wxWindows headers
#include <wx/wx.h>
#include <wx/dcbuffer.h>
#include <wx/pen.h>
// App headers
#include "hotdraw/figures/hdAttribute.h"
hdAttribute::hdAttribute():
hdObject()
{
}
void hdAttribute::apply(wxBufferedDC &context)
{
}
void hdAttribute::callDefaultChangeDialog(wxWindow *owner)
{
}