1
Files
lecture-operating-system-de…/c_os/user/demo/SmartPointerDemo.h
2022-07-19 11:25:56 +02:00

20 lines
366 B
C++

#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