home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 28 / amigaformatcd28.iso / -seriously_amiga- / programming / c / asap / image.h < prev    next >
C/C++ Source or Header  |  1998-04-23  |  1KB  |  30 lines

  1. /*****************************************************************************
  2.  *                                                                           *
  3.  * ASAP - Amiga Software Authoring Platform                                  *
  4.  *                                                                           *
  5.  * Written by Laurie Perrin                                                  *
  6.  *                                                                           *
  7.  * AImage wrapper class                                                      *
  8.  *                                                                           *
  9.  *****************************************************************************/
  10.  
  11. #ifndef ASAP_Image_H
  12. #define ASAP_Image_H
  13.  
  14. extern "C"
  15. {
  16.  #include <Proto/Intuition.H>
  17. }
  18.  
  19. class AImage : public Image
  20. {
  21.  public:
  22.  inline BOOL PointInImage(unsigned long point);
  23. };
  24. //-----------------------------------------------------------------------------
  25. BOOL AImage::PointInImage (unsigned long point)
  26. {
  27.  return ::PointInImage(point, this);
  28. }
  29.  
  30. #endif