Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
src_corelib_serialization_qdatastream.cpp
Go to the documentation of this file.
1// Copyright (C) 2018 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
3
4#include <QDataStream>
5#include <QImage>
6
7class QXxx
8{ };
9
10//! [0]
11QDataStream &operator<<(QDataStream &, const QXxx &);
12QDataStream &operator>>(QDataStream &, QXxx &);
13//! [0]
14
15//! [1]
16QDataStream &operator<<(QDataStream &stream, const QImage &image);
17QDataStream &operator>>(QDataStream &stream, QImage &image);
18//! [1]
QDataStream & operator<<(QDataStream &, const QXxx &)
[0]
QDataStream & operator<<(QDataStream &stream, const QImage &image)
[0]
Definition qimage.cpp:4006
QDataStream & operator>>(QDataStream &, QXxx &)
QDataStream & operator>>(QDataStream &stream, QImage &image)
Definition qimage.cpp:4032