home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-06-17 | 496 b | 32 lines | [TEXT/CWIE] |
- // OSQueueLinkBase.h
-
- #ifndef OSQueueLinkBase_h
- #define OSQueueLinkBase_h
-
- #ifndef Integers_h
- #include "Integers.h"
- #endif
- #ifndef __OSUTILS__
- #include <OSUtils.h>
- #endif
-
- class OSQueueLinkBase: private QElem
- {
- friend class OSQueueBase;
-
- private:
- bool queued;
-
- // not implemented:
- OSQueueLinkBase( const OSQueueLinkBase& );
- void operator=( const OSQueueLinkBase& );
-
- public:
- OSQueueLinkBase();
- ~OSQueueLinkBase();
-
- bool Queued() const { return queued; }
- };
-
- #endif
-