#ifndef INC_TASKS_SPAM_TASK_HPP_ #define INC_TASKS_SPAM_TASK_HPP_ #include namespace tasks { class SpamTask : public sta::tacos::TacosThread { public: SpamTask(); // One time function that is called when the thread is created. void init() override; // Repeatable function that is called every time the thread is executed. void func() override; }; } // namespace tasks #endif /* INC_TASKS_SPAM_TASK_HPP_ */