
August 7th, 2006, 07:19 PM
|
 |
National Security Advisor
|
|
Join Date: Dec 1999
Posts: 8,806
Thanks: 54
Thanked 33 Times in 31 Posts
|
|
Re: OT: Stupid c++
Vector isn't a built-in type, so you need to have something, typically in the header file, like:
#include <vector>
and probably you want:
using namespace std;
and then to declare it, something like:
vector <MouseCheeseWhatever> NarfsVector;
|