Heart 1.3.842.34c2ab5
Heart is base back end library for your c++ Qt projects.
packadata.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2018-2024 QuasarApp.
3 * Distributed under the lgplv3 software license, see the accompanying
4 * Everyone is permitted to copy and distribute verbatim copies
5 * of this license document, but changing it is not allowed.
6*/
7
8
9#ifndef PACKADATA_H
10#define PACKADATA_H
11
12namespace QH {
13class Package;
17struct PackaData {
19 Package *_data = nullptr;
20
21 ~PackaData();
22};
23}
24#endif // PACKADATA_H
The Package struct. This is base structure for transporting data by network between QH nodes....
Definition package.h:23
The QH namespace - QuasarApp Heart namespace. This namespace contains all classes of the Heart librar...
Definition heart.cpp:13
The PackaData struct - private data of packages.
Definition packadata.h:17
char _parseResult
Definition packadata.h:18
Package * _data
Definition packadata.h:19