Guest_imported
New member
- Jan 1, 1970
- 0
Hello,
I just came out of hibernation and im going into my 3rd year of C++. I forgot how to set up a class. Here is what Ive got, is this right so far?
class hello
{
private:
hello(); //contructor?
public:
int funct A(); //prototypes?
int funct B();
};
how do I setup the implemtation for funt A and B?
I just came out of hibernation and im going into my 3rd year of C++. I forgot how to set up a class. Here is what Ive got, is this right so far?
class hello
{
private:
hello(); //contructor?
public:
int funct A(); //prototypes?
int funct B();
};
how do I setup the implemtation for funt A and B?