lab 2 start

This commit is contained in:
2022-03-16 09:57:42 -05:00
parent 07ed0ce879
commit 6c1d225510
2 changed files with 37 additions and 0 deletions

10
Lecture/Week2/dog.h Normal file
View 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;
};