about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/3/C++/cow.cc
diff options
context:
space:
mode:
Diffstat (limited to 'usth/ICT2.2/labwork/3/C++/cow.cc')
-rw-r--r--usth/ICT2.2/labwork/3/C++/cow.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/3/C++/cow.cc b/usth/ICT2.2/labwork/3/C++/cow.cc
new file mode 100644
index 0000000..84fabc8
--- /dev/null
+++ b/usth/ICT2.2/labwork/3/C++/cow.cc
@@ -0,0 +1,11 @@
+#include <iostream>
+
+#include "cow.h"
+
+using namespace std;
+
+void
+Cow::moo ()
+{
+  cout << "Moo...!" << endl;
+}