Provide empty stubs for constructors

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21611 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott
2003-07-03 17:51:08 +00:00
parent 4827630066
commit d318df4bbb
2 changed files with 9 additions and 1 deletions

View File

@@ -40,7 +40,7 @@ class WXDLLEXPORT wxRegion : public wxGDIObject {
DECLARE_DYNAMIC_CLASS(wxRegion);
friend class WXDLLEXPORT wxRegionIterator;
public:
wxRegion(long x, long y, long w, long h);
wxRegion(wxCoord x, wxCoord y, wxCoord w, wxCoord h);
wxRegion(const wxPoint& topLeft, const wxPoint& bottomRight);
wxRegion(const wxRect& rect);
wxRegion();

View File

@@ -96,6 +96,14 @@ wxRegion::wxRegion()
{
}
wxRegion::wxRegion(wxCoord x, wxCoord y, wxCoord w, wxCoord h)
{
}
wxRegion::wxRegion(const wxPoint& topLeft, const wxPoint& bottomRight)
{
}
wxRegionIterator::wxRegionIterator()
{
}