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