8 lines
189 B
C++
8 lines
189 B
C++
#pragma once
|
|
|
|
#include "CommandAbstract.h"
|
|
|
|
class ParaSetCommand : public CommandAbstract {
|
|
public:
|
|
explicit ParaSetCommand(uint64_t target_address = 0, uint64_t router_address = 0);
|
|
}; |