mirror of
https://github.com/QuasarApp/Heart.git
synced 2025-04-28 10:44:39 +00:00
25 lines
497 B
C++
25 lines
497 B
C++
/*
|
|
* Copyright (C) 2018-2025 QuasarApp.
|
|
* Distributed under the lgplv3 software license, see the accompanying
|
|
* Everyone is permitted to copy and distribute verbatim copies
|
|
* of this license document, but changing it is not allowed.
|
|
*/
|
|
|
|
|
|
#ifndef PACKADATA_H
|
|
#define PACKADATA_H
|
|
|
|
namespace QH {
|
|
class Package;
|
|
/**
|
|
* @brief The PackaData struct - private data of packages
|
|
*/
|
|
struct PackaData {
|
|
char _parseResult;
|
|
Package *_data = nullptr;
|
|
|
|
~PackaData();
|
|
};
|
|
}
|
|
#endif // PACKADATA_H
|