// Name: region.cpp
// Purpose:
// Author: Robert Roebling
-// Created: 01/02/98
-// Id:
-// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
+// Id: $Id$
+// Copyright: (c) 1998 Robert Roebling
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
{
}
+bool wxRegion::operator == ( const wxRegion& region )
+{
+ return m_refData == region.m_refData;
+}
+
+bool wxRegion::operator != ( const wxRegion& region )
+{
+ return m_refData != region.m_refData;
+}
+
void wxRegion::Clear(void)
{
UnRef();