aboutsummaryrefslogtreecommitdiff
path: root/oop2w3/C.cpp
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-11-23 10:20:31 +0100
committerlonkaars <loek@pipeframe.xyz>2022-11-23 10:20:31 +0100
commitadb4076e576af4990051ff18f2afd017619d077e (patch)
treecb9bebea353d9bb2abe519d39d32b5d53cb6e433 /oop2w3/C.cpp
parent15d622aa542421c0e3f8eb448b69e1121d7a0738 (diff)
huiswerk week 3 klaar
Diffstat (limited to 'oop2w3/C.cpp')
-rw-r--r--oop2w3/C.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/oop2w3/C.cpp b/oop2w3/C.cpp
new file mode 100644
index 0000000..6a0fadd
--- /dev/null
+++ b/oop2w3/C.cpp
@@ -0,0 +1,11 @@
+#include <iostream>
+
+#include "C.h"
+
+C::C() {
+ std::cout << "C::C()" << std::endl;
+}
+
+void C::actie4() {
+ std::cout << "C::actie4()" << std::endl;
+}