Ignore:
Timestamp:
May 9, 2007, 10:26:36 PM (17 years ago)
Author:
イグトランス (egtra)
Message:

GDI+に対して名前空間で囲ったものの、現在コンパイルできないため分岐させておく

Location:
branch/egtra-gdiplus
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branch/egtra-gdiplus/Classes/System/Drawing/RectangleF.ab

    r212 r241  
    44#define __SYSTEM_DRAWING_RECTANGLEF_AB__
    55
    6 #include <Classes/System/Math.ab>
    7 #include <Classes/System/Drawing/PointF.ab>
    8 #include <Classes/System/Drawing/SizeF.ab>
     6#require <Classes/System/Math.ab>
     7#require <Classes/System/Drawing/PointF.ab>
     8#require <Classes/System/Drawing/SizeF.ab>
     9
     10Namespace System
     11Namespace Drawing
    912
    1013Class RectangleF
     
    112115        End If
    113116    End Function
    114 /*
    115     Function Operator =(ByRef rc As RectangleF)
    116         With rc
    117             x = .x
    118             y = .y
    119             width = .width
    120             height = .height
    121         End With
    122     End Function
    123 */
     117
    124118    Function Operator ==(rc As RectangleF)
    125119        Return Equals(rc)
     
    185179        This = RectangleF.Intersect(This, rect)
    186180    End Sub
    187    
     181
    188182    Static Function Intersect(a As RectangleF, b As RectangleF) As RectangleF
    189183        Dim right As Single, bottom As Single, left As Single, top As Single
     
    231225End Class
    232226
     227End Namespace 'Drawing
     228End Namespace 'System
     229
    233230#endif '__SYSTEM_DRAWING_RECTFANGLE_AB__
Note: See TracChangeset for help on using the changeset viewer.