/** ** KAI C++ Compiler ** ** Copyright (C) 1996-2001 Intel Corp. All rights reserved. **/ #ifndef __KAI_QUEUE_H #define __KAI_QUEUE_H #include using std::queue; using std::priority_queue; using std::operator==; using std::operator<; using std::operator!=; using std::operator>; using std::operator>=; using std::operator<=; #endif /* __KAI_QUEUE_H */