I am having trouble finding the bitset class for C++.
I am using the Developer Tools released in December 2001 (the most recent I think), and I'm missing the Bitset class of the C++ Standard Template Library.
When including the file with the line:
#include <bitset>
I compile with the line:
c++ BitsetTest.cpp
I get the error:
bitset: No such file or directory
I then tried testing the other containers and they all work (they are deque, list, map, set, queue, stack, and vector).
I found all of the header files for these other containers in this location:
/usr/include/gcc/darwin/2.95.2/g++
And I couldn't find any bitset.h or anything.
Does anyone know where I could get the source code for the bitset class, or if I should already have it with Apple's DevTools?
Thanks for any help,
reyzell