home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1998 / MacHack 1998.toast / Sessions / Completions / Completions Source / OS Queues / OSQueueLinkBase.cp < prev    next >
Encoding:
Text File  |  1996-11-15  |  270 b   |  20 lines  |  [TEXT/CWIE]

  1. // OSQueueLinkBase.cp
  2.  
  3. #ifndef OSQueueLinkBase_h
  4. #include "OSQueueLinkBase.h"
  5. #endif
  6. #ifndef Assert_h
  7. #include "Assert.h"
  8. #endif
  9.  
  10. OSQueueLinkBase::OSQueueLinkBase()
  11.   : queued( false )
  12.   {
  13.     qType = 0;
  14.   }
  15.  
  16. OSQueueLinkBase::~OSQueueLinkBase()
  17.   {
  18.     Assert( !queued );
  19.   }
  20.