I'm really new to C++ and my problem is that I'm trying to store objects created from my own classe to some vectors.
My class name is Artist and I'm trying to enter it in a vector called oArtist.
The code I use is
Vector <Artist> oArtist;
and the error I get is:
"Nom de type attendu" (sorry, stuck with a french version. It's probably something like "Type name expected"
Is it because I need to have some specific stuff in my object?
Thx for your help!
My class name is Artist and I'm trying to enter it in a vector called oArtist.
The code I use is
Vector <Artist> oArtist;
and the error I get is:
"Nom de type attendu" (sorry, stuck with a french version. It's probably something like "Type name expected"
Is it because I need to have some specific stuff in my object?
Thx for your help!