mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/Tasty.git
synced 2025-08-06 14:07:34 +00:00
Added first implementation
This commit is contained in:
26
include/sta/tasty/tasks/dummy.hpp
Normal file
26
include/sta/tasty/tasks/dummy.hpp
Normal file
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
* Dummy.hpp
|
||||
*
|
||||
* Created on: Dec 31, 2023
|
||||
* Author: Dario
|
||||
*/
|
||||
|
||||
#ifndef INCLUDE_TASKS_DUMMY_HPP_
|
||||
#define INCLUDE_TASKS_DUMMY_HPP_
|
||||
|
||||
#include <sta/tacos/thread.hpp>
|
||||
|
||||
namespace demo
|
||||
{
|
||||
class DummyThread : public sta::tacos::TacosThread
|
||||
{
|
||||
public:
|
||||
DummyThread(const char* name);
|
||||
|
||||
void init() override;
|
||||
|
||||
void func() override;
|
||||
};
|
||||
}
|
||||
|
||||
#endif /* INCLUDE_TASKS_DUMMY_HPP_ */
|
Reference in New Issue
Block a user