about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/3/C++/cow.h
diff options
context:
space:
mode:
Diffstat (limited to 'usth/ICT2.2/labwork/3/C++/cow.h')
-rw-r--r--usth/ICT2.2/labwork/3/C++/cow.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/3/C++/cow.h b/usth/ICT2.2/labwork/3/C++/cow.h
new file mode 100644
index 0000000..df7ffd9
--- /dev/null
+++ b/usth/ICT2.2/labwork/3/C++/cow.h
@@ -0,0 +1,17 @@
+#include <string>
+
+using namespace std;
+
+class Cow
+{
+  // The reason these have private access
+  // is that their no way a cow's name and breed can be changed.
+  string name;
+  string breed;
+public:
+  unsigned age;
+
+  Cow (string n, string b, unsigned a) : name {n}, breed {b}, age {a} {}
+  Cow (string n, string b) : name {n}, breed {b}, age {0} {}
+  void moo ();
+};