Files
CS3210/Lecture/Week2/dog.h
2022-03-16 14:53:27 -05:00

16 lines
362 B
C++

using namespace std;
class Dog {
public:
Dog(int age, int namelength, char * name);
Dog(const Dog& from);
~Dog();
Dog& operator=(const Dog& rhs);
char operator[](int index) const;
char& operator[](int index);
friend ostream& operator<<(ostream& os, const Dog& d);
private:
int age;
int namelength;
char * name;
};