-enum wxRegionOp {
-wxRGN_AND, // Creates the intersection of the two combined regions.
-wxRGN_COPY, // Creates a copy of the region identified by hrgnSrc1.
-wxRGN_DIFF, // Combines the parts of hrgnSrc1 that are not part of hrgnSrc2.
-wxRGN_OR, // Creates the union of two combined regions.
-wxRGN_XOR // Creates the union of two combined regions except for any overlapping areas.
-};
-
-class WXDLLEXPORT wxRegion : public wxGDIObject {
+enum wxRegionOp { wxRGN_AND // Creates the intersection of the two combined regions.
+ ,wxRGN_COPY // Creates a copy of the region identified by hrgnSrc1.
+ ,wxRGN_DIFF // Combines the parts of hrgnSrc1 that are not part of hrgnSrc2.
+ ,wxRGN_OR // Creates the union of two combined regions.
+ ,wxRGN_XOR // Creates the union of two combined regions except for any overlapping areas.
+ };
+
+class WXDLLEXPORT wxRegion : public wxGDIObject
+{