10 lines
272 B
C++
10 lines
272 B
C++
#pragma once
|
|
|
|
#include "MultiDataCommand.h"
|
|
|
|
class AlarmDataCommand : public MultiDataCommand {
|
|
public:
|
|
AlarmDataCommand(uint64_t target_address = 0, uint64_t router_address = 0, time_t time = 0);
|
|
|
|
RequestType getRequestType() { return RequestType::AlarmLog; };
|
|
}; |