mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/Tasty.git
synced 2025-06-12 03:25:58 +00:00
27 lines
408 B
C++
27 lines
408 B
C++
/*
|
|
* 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_ */
|