00001 //--- < INVALIDRECT.H > ---------| ViewGraph - A Flexible Graph view Framework | 00002 // 00003 // InvalidRect specifies an invalid rectangle to be 00004 // discarded by the receiver. 00005 // Return InvalidRect when you do not know what 00006 // to return. 00007 // get_boundrect() and equal() are listed for use. 00008 // 00009 // $Author: botik32 $ 00010 // $Revision: 1.1 $ 00011 // $Date: 2004/05/14 18:35:08 $ 00012 //-----------------------------------------------------------------------------/ 00013 00014 #ifndef INVALIDRECT_H 00015 #define INVALIDRECT_H 00016 00017 /** InvalidRect specifies an invalid rect. Return 00018 ** an InvalidRect when you do not know what to return. 00019 **/ 00020 class InvalidRect 00021 { 00022 public: 00023 static void get_boundrect( double&, double&, 00024 double&, double& ); 00025 /// equal() is used in tests against invalid rects 00026 static bool equal( double, double, double, double ); 00027 }; 00028 00029 #endif 00030 00031 /// $Log: invalidrect.h,v $ 00032 /// Revision 1.1 2004/05/14 18:35:08 botik32 00033 /// Fixed a bug related to HUDGroups and a few that I do not 00034 /// remember now. 00035 /// 00036 /// Revision 1.1.1.1 2004/03/26 10:50:21 botik32 00037 /// Initial release 00038 /// 00039 /// Revision 1.1.1.1 2004/03/26 08:53:33 botik 00040 /// initial import 00041 /// 00042 /// 00043 /// Revision 1.1 2003/11/17 16:53:44 botik 00044 /// initial import 00045 ///