93 lines
2.2 KiB
C++
93 lines
2.2 KiB
C++
//
|
|
// wcqueue.h Defines the WATCOM Queue Container Class
|
|
//
|
|
// =========================================================================
|
|
//
|
|
// Open Watcom Project
|
|
//
|
|
// Copyright (c) 2002-2010 Open Watcom Contributors. All Rights Reserved.
|
|
// Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
|
|
//
|
|
// This file is automatically generated. Do not edit directly.
|
|
//
|
|
// =========================================================================
|
|
//
|
|
#ifndef _WCQUEUE_H_INCLUDED
|
|
#define _WCQUEUE_H_INCLUDED
|
|
|
|
#ifndef _ENABLE_AUTODEPEND
|
|
#pragma read_only_file;
|
|
#endif
|
|
|
|
#ifndef __cplusplus
|
|
#error This header file requires C++
|
|
#endif
|
|
|
|
#ifndef _WCDEFS_H_INCLUDED
|
|
#include <wcdefs.h>
|
|
#endif
|
|
|
|
#ifndef _WCLIST_H_INCLUDED
|
|
#include <wclist.h>
|
|
#endif
|
|
|
|
//
|
|
// The WCQueue template class defines a queue. The template supplies
|
|
// the type of the data maintained in the queue, and the methods for
|
|
// manipulating the queue.
|
|
//
|
|
// The insert operation does an append. This is because an item
|
|
// inserted into a queue is actually the last item removed.
|
|
//
|
|
// The class 'Type' should be properly defined for copy and assignment
|
|
// operations.
|
|
//
|
|
|
|
template<class Type, class FType>
|
|
class WCQueue : private FType {
|
|
public:
|
|
inline WCQueue() {};
|
|
inline WCQueue( void * (*user_alloc)( size_t )
|
|
, void (*user_dealloc)( void *, size_t )
|
|
) : FType( user_alloc, user_dealloc ) {};
|
|
inline ~WCQueue() {};
|
|
|
|
inline WCbool insert( const Type & data ) {
|
|
return( FType::append( data ) );
|
|
};
|
|
|
|
inline WCbool isEmpty() const {
|
|
return( FType::isEmpty() );
|
|
};
|
|
|
|
inline int entries() const {
|
|
return( FType::entries() );
|
|
};
|
|
|
|
inline Type get() {
|
|
return( FType::get() );
|
|
};
|
|
|
|
inline Type first() const {
|
|
return( FType::find( 0 ) );
|
|
};
|
|
|
|
inline Type last() const {
|
|
return( FType::findLast() );
|
|
};
|
|
|
|
inline void clear() {
|
|
FType::clear();
|
|
};
|
|
|
|
inline wc_state exceptions() const {
|
|
return( FType::exceptions() );
|
|
};
|
|
|
|
inline wc_state exceptions( wc_state const set_flags ) {
|
|
return( FType::exceptions( set_flags ) );
|
|
};
|
|
};
|
|
|
|
#endif
|