Vector BLF
Loading...
Searching...
No Matches
EventComment.h
1
// SPDX-FileCopyrightText: 2013-2021 Tobias Lorenz <tobias.lorenz@gmx.net>
2
//
3
// SPDX-License-Identifier: GPL-3.0-or-later
4
5
#pragma once
6
7
#include <Vector/BLF/platform.h>
8
9
#include <string>
10
11
#include <Vector/BLF/AbstractFile.h>
12
#include <Vector/BLF/ObjectHeader.h>
13
14
#include <Vector/BLF/vector_blf_export.h>
15
16
namespace
Vector {
17
namespace
BLF {
18
24
struct
VECTOR_BLF_EXPORT EventComment final : ObjectHeader {
25
EventComment();
26
27
void
read
(
AbstractFile
& is)
override
;
28
void
write
(
AbstractFile
& os)
override
;
29
uint32_t
calculateObjectSize
()
const override
;
30
36
uint32_t
commentedEventType
{};
37
43
uint32_t
textLength
{};
44
48
uint64_t
reservedEventComment
{};
49
55
std::string
text
{};
56
};
57
58
}
59
}
Vector::BLF::AbstractFile
Definition
AbstractFile.h:19
Vector::BLF::EventComment::write
void write(AbstractFile &os) override
Definition
EventComment.cpp:28
Vector::BLF::EventComment::read
void read(AbstractFile &is) override
Definition
EventComment.cpp:16
Vector::BLF::EventComment::text
std::string text
text in MBCS
Definition
EventComment.h:55
Vector::BLF::EventComment::commentedEventType
uint32_t commentedEventType
commented event type
Definition
EventComment.h:36
Vector::BLF::EventComment::textLength
uint32_t textLength
text length in bytes
Definition
EventComment.h:43
Vector::BLF::EventComment::calculateObjectSize
uint32_t calculateObjectSize() const override
Definition
EventComment.cpp:42
Vector::BLF::EventComment::reservedEventComment
uint64_t reservedEventComment
Definition
EventComment.h:48
EventComment.h
Generated by
1.16.1