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

  1. /*****************************************************************************
  2.  *                                                                           *
  3.  * ASAP - Amiga Software Authoring Platform                                  *
  4.  *                                                                           *
  5.  * Written by Laurie Perrin                                                  *
  6.  *                                                                           *
  7.  * AUCopList wrapper class                                                   *
  8.  *                                                                           *
  9.  *****************************************************************************/
  10.  
  11. #ifndef ASAP_AUCopList_H
  12. #define ASAP_AUCopList_H
  13.  
  14. extern "C"
  15. {
  16.  #include <Proto/Graphics.h>
  17. }
  18.  
  19. class AUCopList : public UCopList
  20. {
  21.  public:
  22.  inline void CBump();
  23.  inline void CMove(APTR destination, long data);
  24.  inline void CWait(long v, long h);
  25. };
  26. //----------------------------------------------------------------------------
  27. void AUCopList::CBump ()
  28. {
  29.  ::CBump(this);
  30. }
  31. //----------------------------------------------------------------------------
  32. void AUCopList::CMove (APTR destination, long data)
  33. {
  34.  ::CMove(this, destination, data);
  35. }
  36. //----------------------------------------------------------------------------
  37. void AUCopList::CWait (long v, long h)
  38. {
  39.  ::CWait(this, v, h);
  40. }
  41.  
  42. #endif
  43.