-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathAnimals.hpp
53 lines (44 loc) · 887 Bytes
/
Animals.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#pragma once
#include <iostream>
class Animal {
private:
int animalInt;
public:
Animal(int animalInt) : animalInt(animalInt) {}
Animal() : animalInt(12) {}
virtual ~Animal(){} // the base class must have a virtual method.
virtual void doSomething()
{
std::cout << "animal stuff" << std::endl;
}
};
class Dog : public Animal {
private:
int dogInt;
int dogIntExtra = {-1};
public:
Dog() : Animal(10), dogInt(10) {}
Dog(bool extraprint) : Animal(10), dogInt(10), dogIntExtra(999)
{
if(extraprint)
std::cout << "Dog stuff with extra stuff" << std::endl;
}
void doSomething() override
{
std::cout << "dog stuff" << std::endl;
}
int getExtraInt()
{
return dogIntExtra;
}
};
class Duck : public Animal {
private:
int duckInt;
public:
Duck() : Animal(1337), duckInt(1337) {}
void doSomething() override
{
std::cout << "duck stuff" << std::endl;
}
};