Im very confused about making a vector to hold classes. if i wanted to hold a bunch of data in a single vector like the example below. then have the data written in a class member function, and able to be called out and used by other functions.
where do i stick the vector declaration? please help!
#include <vector>
class Card
{
public:
int suit;
int rank;
Card::Card(int suit, int rank);
Function();
};
vector<Card> cards;
int main()
{
}
Card::Function()
{
for loop...
Card cardz(i, i);
cards.push_back(cardz);
}
cardsis that it should bestd::vector, notvector. You might want to makecardsa static data member of the classCard, I'm not sure. Also, your constructorCard::Cardshould just beCard, andFunctionneeds a return type. Which specific compiler error is it that's troubling you? – Steve Jessop Dec 9 '10 at 0:11