Working with classes Visual C++ 2010
I'm new to VC++ and I'm trying to work with classes. My subroutine worked
fine as straight code, but I Keep getting errors when I try using it in a
class Here is the code for the header file.
[using namespace std;
#ifndef Deck_h
#define Deck_h
class Deck
{
public:
// Default constructor
Deck();
//Destructor
~Deck();
// access functions
//function1
// Member variables
int InDeck[53];
int OutDeck[53];
};
No comments:
Post a Comment