mirror of
https://github.com/thooge/esp32-nmea2000-obp60.git
synced 2025-12-28 05:03:06 +01:00
14 lines
268 B
C++
14 lines
268 B
C++
#ifndef GWIEXAMPLETASK_H
|
|
#define GWIEXAMPLETASK_H
|
|
#include "GwApi.h"
|
|
/**
|
|
* an interface for the example task
|
|
*/
|
|
class ExampleIf : public GwApi::TaskInterfaces::Base{
|
|
public:
|
|
long count=0;
|
|
String someValue;
|
|
};
|
|
DECLARE_TASKIF(exampleTask,ExampleIf);
|
|
|
|
#endif |