aboutsummaryrefslogtreecommitdiff
path: root/oop2w4/MijnKlasse.h
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-11-28 11:24:47 +0100
committerlonkaars <loek@pipeframe.xyz>2022-11-28 11:24:47 +0100
commit93def2de2991282bac9e320b209657f76cb31177 (patch)
tree4377f7195a949e8718b746648f3b301ad9c63081 /oop2w4/MijnKlasse.h
parentdeeb409ab2b0e1aeeb5dcdc0f21ed2f2462298e5 (diff)
week 4 klaar?
Diffstat (limited to 'oop2w4/MijnKlasse.h')
-rw-r--r--oop2w4/MijnKlasse.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/oop2w4/MijnKlasse.h b/oop2w4/MijnKlasse.h
new file mode 100644
index 0000000..f8b74de
--- /dev/null
+++ b/oop2w4/MijnKlasse.h
@@ -0,0 +1,13 @@
+#pragma once
+
+#include <thread>
+
+class MijnKlasse {
+ private:
+ std::thread* _thread = nullptr;
+ int _n = 0;
+ public:
+ MijnKlasse(int n);
+ ~MijnKlasse();
+ static void showNum(int n);
+};