Thread
:
wont let me create a vector of my user defined class
View Single Post
•
•
Join Date: Sep 2004
Posts: 7,868
Reputation:
Solved Threads: 755
Narue
Offline
Senior Bitch
Re: wont let me create a vector of my user defined class
0
#
2
Nov 10th, 2008
The vector class is in the std namespace. Change
vector<FrequencyNode> list;
to
std::vector<FrequencyNode> list;
. You have other errors though.
New members chased away this month:
5
Narue
View Public Profile
Visit Narue's homepage!
Find all posts by Narue