summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/snippets/code/src_corelib_serialization_qdatastream.cpp
blob: dfdebe6a76b2e77d6ed7d199934ad5ebc6f857d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [0]
QDataStream &operator<<(QDataStream &, const QXxx &);
QDataStream &operator>>(QDataStream &, QXxx &);
//! [0]

//! [1]
QDataStream &operator<<(QDataStream &stream, const QImage &image);
QDataStream &operator>>(QDataStream &stream, QImage &image);
//! [1]