16 lines
362 B
C++
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;
|
|
}; |