/** ** KAI C++ Compiler ** ** Copyright (C) 1996-2001 Intel Corp. All rights reserved. **/ #ifndef __KAI_BITSET_H #define __KAI_BITSET_H #include using std::bitset; using std::operator&; using std::operator|; using std::operator^; using std::operator>>; using std::operator<<; #endif /* __KAI_BITSET_H */