mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/TACOS.git
synced 2025-06-12 01:25:59 +00:00
26 lines
384 B
C++
26 lines
384 B
C++
/*
|
|
* dummy.hpp
|
|
*
|
|
* Created on: 22 Sep 2023
|
|
* Author: Dario
|
|
*/
|
|
|
|
#ifndef INC_TASKS_DUMMY_HPP_
|
|
#define INC_TASKS_DUMMY_HPP_
|
|
|
|
#include <sta/tacos/thread.hpp>
|
|
|
|
namespace demo
|
|
{
|
|
class DummyTask : public sta::tacos::TacosThread {
|
|
public:
|
|
DummyTask(const char* name);
|
|
|
|
void init() override;
|
|
|
|
void func() override;
|
|
};
|
|
} // namespace demo
|
|
|
|
#endif /* INC_TASKS_DUMMY_HPP_ */
|