9 lines
246 B
C++
9 lines
246 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
|
|
#include "CommandAbstract.h"
|
|
|
|
class ParaSetCommand : public CommandAbstract {
|
|
public:
|
|
explicit ParaSetCommand(const uint64_t target_address = 0, const uint64_t router_address = 0);
|
|
}; |