class DeckOfCards
{
public:
DeckOfCards(); // constructor initializes deck
void shuffle(); // member function that shuffles cards in deck
void deal(); // member function that deals cards in deck
private:
int deck[3][14]; // represents deck of cards
}; // end of class definition
Well, Tom qian han, maybe you could tell us more about the error ?
What's the full message ?
qian han a écrit :
> Dear All,
>
> The attached program compiled successfully in Visual Studio but has a
> linking error with Dev.
> Can anybody help checking what goes wrong? Thanks a lot!
>
> Tom