17 lines
316 B
C++
17 lines
316 B
C++
#ifndef __SmartPointerDemo_include__
|
|
#define __SmartPointerDemo_include__
|
|
|
|
#include "kernel/Globals.h"
|
|
|
|
class SmartPointerDemo : public Thread {
|
|
private:
|
|
SmartPointerDemo(const SmartPointerDemo& copy) = delete;
|
|
|
|
public:
|
|
SmartPointerDemo() : Thread("SmartPointerDemo") {}
|
|
|
|
void run() override;
|
|
};
|
|
|
|
#endif
|