Vector BLF
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 }
Definition: AbstractFile.h:19
EVENT_COMMENT.
Definition: EventComment.h:24
Object header.
Definition: ObjectHeader.h:22