add string demo
This commit is contained in:
16
c_os/user/demo/StringDemo.h
Normal file
16
c_os/user/demo/StringDemo.h
Normal file
@ -0,0 +1,16 @@
|
||||
#ifndef __StringDemo_include__
|
||||
#define __StringDemo_include__
|
||||
|
||||
#include "kernel/Globals.h"
|
||||
|
||||
class StringDemo : public Thread {
|
||||
private:
|
||||
StringDemo(const StringDemo& copy) = delete;
|
||||
|
||||
public:
|
||||
StringDemo() : Thread("StringDemo") {}
|
||||
|
||||
void run() override;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user