View Single Post
  #4  
Old August 7th, 2006, 07:19 PM
PvK's Avatar

PvK PvK is offline
National Security Advisor
 
Join Date: Dec 1999
Posts: 8,806
Thanks: 54
Thanked 33 Times in 31 Posts
PvK is on a distinguished road
Default 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;
Reply With Quote