OnixS C++ MTS Bond Vision SDP Handler
1.2.0
API documentation
Home
Contents
Namespaces
Classes
Files
File List
File Members
include
OnixS
MTS
BondVision
SDP
Classes
SMP.Classes.TI_DESC_CLASS_SEGKEY.h
Go to the documentation of this file.
1
#pragma once
2
/*
3
* Copyright Onix Solutions Limited [OnixS]. All rights reserved.
4
*
5
* This software owned by Onix Solutions Limited [OnixS] and is protected by copyright law
6
* and international copyright treaties.
7
*
8
* Access to and use of the software is governed by the terms of the applicable ONIXS Software
9
* Services Agreement (the Agreement) and Customer end user license agreements granting
10
* a non-assignable, non-transferable and non-exclusive license to use the software
11
* for it's own data processing purposes under the terms defined in the Agreement.
12
*
13
* Except as otherwise granted within the terms of the Agreement, copying or reproduction of any part
14
* of this source code or associated reference material to any other location for further reproduction
15
* or redistribution, and any amendments to this copyright notice, are expressly prohibited.
16
*
17
* Any reproduction or redistribution for sale or hiring of the Software not in accordance with
18
* the terms of the Agreement is a violation of copyright law.
19
*/
20
21
22
/*
23
--------------
24
GENERATED FILE
25
--------------
26
*/
27
28
29
#include <string>
30
#include <
OnixS/MTS/BondVision/SDP/Defines.h
>
31
#include <
OnixS/MTS/BondVision/SDP/SMP.ClassIds.h
>
32
#include <
OnixS/MTS/BondVision/SDP/SMP.Enumerations.h
>
33
34
35
namespace
OnixS
{
36
namespace
Mts {
37
namespace
BondVision {
38
namespace
SDP {
39
40
41
42
///
43
class
ONIXS_MTS_BONDVISION_SDP_API
TI_DESC_CLASS_SEGKEY
:
public
Class
44
{
45
public
:
46
TI_DESC_CLASS_SEGKEY
()
47
{
48
}
49
50
virtual
~TI_DESC_CLASS_SEGKEY
() {}
51
52
/// Class id
53
virtual
ClassId::Enum
id
()
const
54
{
55
return
ClassId::TI_DESC_CLASS_SEGKEY
;
56
}
57
58
/// Identifier of reference class
59
UInt32
entityID
;
60
61
/// Identifier of key
62
UInt32
keyID
;
63
64
/// Progressive number of key
65
UInt32
keyIndex
;
66
67
/// Offset of key
68
UInt32
keyOffset
;
69
70
/// Type of key
71
UInt32
keyType
;
72
73
/// Size of key
74
UInt32
keyLen
;
75
76
77
///
78
size_t
deserialize(
const
void
* buf,
size_t
inLen);
79
80
/// Provides string presentation
81
virtual
std::string toString ()
const
;
82
83
///
84
virtual
size_t
serializationBufSize
()
const
{
return
24; }
85
86
///
87
virtual
TI_DESC_CLASS_SEGKEY
* clone()
const
;
88
89
virtual
TI_DESC_CLASS_SEGKEY
* clone(
void
*)
const
;
90
91
private
:
92
virtual
size_t
serialize(
void
* buf)
const
;
93
94
};
95
96
97
}
98
}
99
}
100
}
OnixS::Mts::BondVision::SDP::TI_DESC_CLASS_SEGKEY::~TI_DESC_CLASS_SEGKEY
virtual ~TI_DESC_CLASS_SEGKEY()
Definition:
SMP.Classes.TI_DESC_CLASS_SEGKEY.h:50
OnixS::Mts::BondVision::SDP::ClassId::Enum
Enum
Definition:
SMP.ClassIds.h:38
OnixS::Mts::BondVision::SDP::TI_DESC_CLASS_SEGKEY
Definition:
SMP.Classes.TI_DESC_CLASS_SEGKEY.h:43
OnixS::Mts::BondVision::SDP::TI_DESC_CLASS_SEGKEY::keyLen
UInt32 keyLen
Size of key.
Definition:
SMP.Classes.TI_DESC_CLASS_SEGKEY.h:74
Defines.h
OnixS::Mts::BondVision::SDP::TI_DESC_CLASS_SEGKEY::id
virtual ClassId::Enum id() const
Class id.
Definition:
SMP.Classes.TI_DESC_CLASS_SEGKEY.h:53
SMP.Enumerations.h
OnixS
Definition:
ActResultListener.h:23
SMP.ClassIds.h
OnixS::Mts::BondVision::SDP::TI_DESC_CLASS_SEGKEY::keyOffset
UInt32 keyOffset
Offset of key.
Definition:
SMP.Classes.TI_DESC_CLASS_SEGKEY.h:68
OnixS::Mts::BondVision::SDP::ClassId::TI_DESC_CLASS_SEGKEY
Definition:
SMP.ClassIds.h:98
OnixS::Mts::BondVision::SDP::TI_DESC_CLASS_SEGKEY::entityID
UInt32 entityID
Identifier of reference class.
Definition:
SMP.Classes.TI_DESC_CLASS_SEGKEY.h:59
OnixS::Mts::BondVision::SDP::TI_DESC_CLASS_SEGKEY::keyType
UInt32 keyType
Type of key.
Definition:
SMP.Classes.TI_DESC_CLASS_SEGKEY.h:71
OnixS::Mts::BondVision::SDP::UInt32
unsigned int UInt32
Definition:
Defines.h:46
OnixS::Mts::BondVision::SDP::TI_DESC_CLASS_SEGKEY::TI_DESC_CLASS_SEGKEY
TI_DESC_CLASS_SEGKEY()
Definition:
SMP.Classes.TI_DESC_CLASS_SEGKEY.h:46
OnixS::Mts::BondVision::SDP::TI_DESC_CLASS_SEGKEY::keyIndex
UInt32 keyIndex
Progressive number of key.
Definition:
SMP.Classes.TI_DESC_CLASS_SEGKEY.h:65
OnixS::Mts::BondVision::SDP::TI_DESC_CLASS_SEGKEY::keyID
UInt32 keyID
Identifier of key.
Definition:
SMP.Classes.TI_DESC_CLASS_SEGKEY.h:62
OnixS::Mts::BondVision::SDP::TI_DESC_CLASS_SEGKEY::serializationBufSize
virtual size_t serializationBufSize() const
Definition:
SMP.Classes.TI_DESC_CLASS_SEGKEY.h:84
OnixS::Mts::BondVision::SDP::Class
Class.
Definition:
SMP.Class.h:38