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

  1. /*****************************************************************************
  2.  *                                                                           *
  3.  * ASAP - Amiga Software Authoring Platform                                  *
  4.  *                                                                           *
  5.  * Written by Laurie Perrin                                                  *
  6.  *                                                                           *
  7.  * AIntuiMessage wrapper class                                               *
  8.  *                                                                           *
  9.  *****************************************************************************/
  10.  
  11. #ifndef ASAP_AIntuiMessage_H
  12. #define ASAP_AIntuiMessage_H
  13.  
  14. extern "C"
  15. {
  16.  #include <Proto/GadTools.h>
  17. }
  18.  
  19. class AIntuiMessage : public IntuiMessage
  20. {
  21.  public:
  22.  inline AIntuiMessage * GT_FilterIMsg();
  23.  inline AIntuiMessage * GT_PostFilterIMsg();
  24.  inline void GT_ReplyIMsg();
  25. };
  26. //----------------------------------------------------------------------------
  27. AIntuiMessage * AIntuiMessage::GT_FilterIMsg ()
  28. {
  29.  return (AIntuiMessage *) ::GT_FilterIMsg(this);
  30. }
  31. //----------------------------------------------------------------------------
  32. AIntuiMessage * AIntuiMessage::GT_PostFilterIMsg ()
  33. {
  34.  return (AIntuiMessage *) ::GT_PostFilterIMsg(this);
  35. }
  36. //----------------------------------------------------------------------------
  37. void AIntuiMessage::GT_ReplyIMsg ()
  38. {
  39.  ::GT_ReplyIMsg(this);
  40. }
  41.  
  42. #endif
  43.