7#include <Vector/BLF/platform.h>
11#include <Vector/BLF/AbstractFile.h>
12#include <Vector/BLF/ObjectHeader.h>
14#include <Vector/BLF/vector_blf_export.h>
20struct VECTOR_BLF_EXPORT DistributedObjectMember final : ObjectHeader {
21 DistributedObjectMember();
Definition AbstractFile.h:19
void read(AbstractFile &is) override
Definition DistributedObjectMember.cpp:14
uint32_t memberType
type of the distributed object member
Definition DistributedObjectMember.h:55
void write(AbstractFile &os) override
Definition DistributedObjectMember.cpp:26
uint32_t pathLength
length of variable name in bytes
Definition DistributedObjectMember.h:61
MemberType
type of the distributed object member
Definition DistributedObjectMember.h:28
@ MemberTypeRefMember
Definition DistributedObjectMember.h:34
@ MemberTypeData
Definition DistributedObjectMember.h:30
@ MemberTypeEvent
Definition DistributedObjectMember.h:33
@ MemberTypeBindingError
Definition DistributedObjectMember.h:36
@ MemberTypeMethod
Definition DistributedObjectMember.h:31
@ MemberTypeRefObject
Definition DistributedObjectMember.h:35
@ MemberTypeField
Definition DistributedObjectMember.h:32
@ MemberTypeInvalid
Definition DistributedObjectMember.h:29
uint32_t detailType
detail type of the distributed object
Definition DistributedObjectMember.h:58
std::string path
path of the distributed object member
Definition DistributedObjectMember.h:69
uint32_t calculateObjectSize() const override
Definition DistributedObjectMember.cpp:40
std::vector< uint8_t > data
variable data
Definition DistributedObjectMember.h:72
DetailType
detail type of the distributed object
Definition DistributedObjectMember.h:40
@ DetailTypeSubscriptionState
Definition DistributedObjectMember.h:46
@ DetailTypeInvalid
Definition DistributedObjectMember.h:41
@ DetailTypeAnnouncementState
Definition DistributedObjectMember.h:47
@ DetailTypeValue
Definition DistributedObjectMember.h:42
@ DetailTypeFunctionCall
Definition DistributedObjectMember.h:43
@ DetailTypeReferencePath
Definition DistributedObjectMember.h:48
@ DetailTypeFunctionDefaults
Definition DistributedObjectMember.h:45
@ DetailTypeBindingError
Definition DistributedObjectMember.h:49
@ DetailTypeFunctionReturn
Definition DistributedObjectMember.h:44
uint32_t dataLength
length of variable data in bytes
Definition DistributedObjectMember.h:64