Heart 1.3.842.34c2ab5
Heart is base back end library for your c++ Qt projects.
bigdatarequest.cpp
Go to the documentation of this file.
1/*
2 * Copyright (C) 2021-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 "bigdatarequest.h"
9
10namespace QH {
11namespace PKG {
12
16
17QDataStream &BigDataRequest::fromStream(QDataStream &stream) {
19
20 stream >> _currentPart;
21
22 return stream;
23}
24
25QDataStream &BigDataRequest::toStream(QDataStream &stream) const {
27
28 stream << _currentPart;
29
30 return stream;
31}
32
34 return _currentPart;
35}
36
37void BigDataRequest::setCurrentPart(int newCurrentPart) {
38 _currentPart = newCurrentPart;
39}
40
41}
42}
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.
QDataStream & fromStream(QDataStream &stream) override
fromStream This method should be read all bytes from the stream object and full the current object.
int currentPart() const
currentPart This method return current part number.
QDataStream & toStream(QDataStream &stream) const override
fromStream This method should be write all members of the current object to the stream object.
void setCurrentPart(int newCurrentPart)
setCurrentPart This method sets current new value of current page
The QH namespace - QuasarApp Heart namespace. This namespace contains all classes of the Heart librar...
Definition heart.cpp:13