1

add smartpointer demo for debug

This commit is contained in:
2022-07-19 11:25:56 +02:00
parent 98eb398156
commit 885eecf468
4 changed files with 38 additions and 1 deletions

View File

@ -0,0 +1,19 @@
#ifndef __SmartPointerDemo_include__
#define __SmartPointerDemo_include__
#include "kernel/Globals.h"
#include <memory>
class SmartPointerDemo : public Thread {
private:
SmartPointerDemo(const SmartPointerDemo& copy) = delete;
public:
SmartPointerDemo() {
kout << "Initialized SmartPointerDemo" << endl;
}
void run() override;
};
#endif