Heart 1.3.842.34c2ab5
Heart is base back end library for your c++ Qt projects.
versionisreceived.cpp
Go to the documentation of this file.
1//#
2//# Copyright (C) 2020-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#include "versionisreceived.h"
9namespace QH {
10namespace PKG {
11
16
17QDataStream &VersionIsReceived::fromStream(QDataStream &stream) {
18 return stream;
19}
20
21QDataStream &VersionIsReceived::toStream(QDataStream &stream) const {
22 return stream;
23}
24}
25}
QDataStream & fromStream(QDataStream &stream) override
fromStream This method should be read all bytes from the stream object and full the current object.
QDataStream & toStream(QDataStream &stream) const override
fromStream This method should be write all members of the current object to the stream object.
The QH namespace - QuasarApp Heart namespace. This namespace contains all classes of the Heart librar...
Definition heart.cpp:13