aboutsummaryrefslogtreecommitdiff
path: root/oop2w4/MijnKlasse.h
blob: f8b74def4584c098df2b96f98e570d91abc92ccc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);
};