I just signed in to these forums and I'd be so happy if you guys could help me out with a triviality that I can't seem to get around.
Now, although I haven't actually got around to programming anything really complex, I've been reading alot these last 2 months and I wanted to start a project that'd be a challenge.
I got the main() ready and ofcourse it won't compile if I don't declare any of the three funtions in it, which are the only errors.
I tried declaring one of them in a header file but since it's a function that's supposed to return bitsets and has a vector class in one parameter and another bitset in the other I get all these errors and I can't get it to work.
The header file with the function declaration is this:
#include <string>
#include <bitset>
#include <vector>
#include <iostream>
bitset Read(vector v, bitset b);
The error I get is "`bitset' does not name a type ".
Could someone please help me out with this?