-
Notifications
You must be signed in to change notification settings - Fork 18
/
mozilla.cpp
101 lines (87 loc) · 1.58 KB
/
mozilla.cpp
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#include <iostream>
namespace western {
enum ShootingHand
{
kLeft,
kRight
};
class Cowboy
{
public:
Cowboy();
Cowboy(int aGunCount);
~Cowboy();
void Shoot(std::string aWho);
int GetAge() { return mAge; }
protected:
void MakeBang(const int& aHowMany);
int mGunCount;
int mAge;
};
Cowboy::Cowboy()
: mAge(45)
, mGunCount(2)
{
std::cout << "I am alive!" << std::endl;
}
Cowboy::Cowboy(int aGunCount)
: mAge(45)
, mGunCount(aGunCount)
{
// And this is the longest inline comment you have every seen. Lorem Ipsum.
// Bacon! Cheese. Bread. Beer. Fish. Mobile fridge. More random words come
// here...
std::cout << "Howdy!" << std::endl;
}
Cowboy::~Cowboy()
{
std::cout << "RIP" << std::endl;
}
void
Cowboy::Shoot(std::string aWho)
{
mAge++;
int someNumber = 5 + 7 * 3;
MakeBang(someNumber);
if (someNumber > 10) {
return;
}
switch (mAge) {
case 45:
mAge--;
break;
default:
mAge++;
}
}
void
Cowboy::MakeBang(const int& aHowMany)
{
for (int i = 0; i < aHowMany; ++i)
std::cout << "Bang!" << std::endl;
}
void
someVeryLongMethod(int param1,
int param2,
int param3,
int param4,
int param5,
int param6,
int param7,
int param8,
int param9,
int param10)
{
std::cout << "So long..." << std::endl;
}
}
using namespace western;
int
main()
{
Cowboy Amy;
Cowboy Angus(2);
Cowboy* currentCowboy = &Amy;
currentCowboy->Shoot("yourself");
return 0;
}