lab 2 start
This commit is contained in:
10
Lecture/Week2/dog.h
Normal file
10
Lecture/Week2/dog.h
Normal file
@@ -0,0 +1,10 @@
|
||||
using namespace std;
|
||||
|
||||
class Dog {
|
||||
public:
|
||||
Dog(int age, int namelength, char * name);
|
||||
~Dog();
|
||||
int age;
|
||||
int namelength;
|
||||
char * name;
|
||||
};
|
||||
Reference in New Issue
Block a user