Changeset 2174 for trunk/src/ddraw/rectangle.h
- Timestamp:
- Dec 21, 1999, 2:28:20 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ddraw/rectangle.h
r405 r2174 1 /* $Id: rectangle.h,v 1.4 1999-12-21 01:28:19 hugh Exp $ */ 2 3 /* 4 * Rectangle class used to keep track of locked rects in surfaces 5 * 6 * Copyright 1999 Markus Montkowski 7 * 8 * Project Odin Software License can be found in LICENSE.TXT 9 * 10 */ 11 1 12 #ifndef __DDRectandle 2 13 #define __DDRectandle 3 14 4 #include <ibase.hpp> 5 6 class DDRectangle : public IBase { 7 typedef IBase 8 Inherited; 15 class DDRectangle { 9 16 public: 10 17 /*------------------------------ Related Types -------------------------------*/ … … 22 29 23 30 /*------------------------------- Comparisons --------------------------------*/ 24 B oolean31 BOOL 25 32 operator == ( const DDRectangle& rectangle ) const, 26 33 operator != ( const DDRectangle& rectangle ) const; 27 34 28 35 /*--------------------------------- Testing ----------------------------------*/ 29 B oolean36 BOOL 30 37 intersects ( const DDRectangle& rectangle ) const; 31 38
Note:
See TracChangeset
for help on using the changeset viewer.