digiKam
Loading...
Searching...
No Matches
qdatastreamoverloads.h
Go to the documentation of this file.
1/* ============================================================
2 *
3 * This file is a part of digiKam project
4 * https://www.digikam.org
5 *
6 * Date : 16/08/2016
7 * Description : Serialization utilities to help making long
8 * serialization platform independent
9 *
10 * SPDX-FileCopyrightText: 2016 by Omar Amin <Omar dot moh dot amin at gmail dot com>
11 * SPDX-FileCopyrightText: 2016-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
12 *
13 * SPDX-License-Identifier: GPL-2.0-or-later
14 *
15 * ============================================================ */
16
17#pragma once
18
19// Qt includes
20
21#include <QDataStream>
22
23// Local includes
24
25#include "digikam_export.h"
26
27DIGIKAM_EXPORT QDataStream& operator >> (QDataStream& dataStream,
28 unsigned long& in);
29
30DIGIKAM_EXPORT QDataStream& operator << (QDataStream& dataStream,
31 const unsigned long& in);
DIGIKAM_EXPORT QDataStream & operator>>(QDataStream &dataStream, unsigned long &in)
Definition qdatastreamoverloads.cpp:19
DIGIKAM_EXPORT QDataStream & operator<<(QDataStream &dataStream, const unsigned long &in)
Definition qdatastreamoverloads.cpp:29