mirror of
https://github.com/anklimov/lighthub
synced 2026-05-04 21:15:49 +00:00
18 lines
384 B
C++
18 lines
384 B
C++
|
|
#pragma once
|
|
#include "options.h"
|
|
#ifndef COUNTER_DISABLE
|
|
|
|
#include <abstractout.h>
|
|
#include <item.h>
|
|
|
|
class out_counter : public abstractOut {
|
|
public:
|
|
int Setup() override;
|
|
int Poll(short cause) override;
|
|
int Stop() override;
|
|
int getChanType() override;
|
|
int Ctrl(itemCmd cmd, char* subItem=NULL, bool toExecute=true, bool authorized = false) override;
|
|
};
|
|
#endif
|