-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcli_test.h
40 lines (26 loc) · 892 Bytes
/
cli_test.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#pragma once
/* Generated with IDL v0.1.2 */
#include "packetfactory.h"
namespace RoseCommon {
namespace Packet {
class CliTest : public CRosePacket {
public:
static constexpr ePacketType PACKET_ID = ePacketType::PAKCS_TEST;
CliTest();
CliTest(CRoseReader reader);
CliTest(CliTest&&) = default;
CliTest& operator=(CliTest&&) = default;
~CliTest() = default;
static constexpr size_t size();
CliTest& set_test(const uint8_t);
uint8_t get_test() const;
static CliTest create(const uint8_t& test);
static CliTest create(const uint8_t* buffer);
static std::unique_ptr<CliTest> allocate(const uint8_t* buffer);
protected:
virtual bool pack(CRoseBasePolicy&) const override;
private:
uint8_t test;
};
}
}