File indexing completed on 2025-03-09 03:55:00
0001 /* ============================================================ 0002 * 0003 * This file is a part of digiKam project 0004 * https://www.digikam.org 0005 * 0006 * Date : 16/08/2016 0007 * Description : Serialization utilities to help making long 0008 * serialization platform independent 0009 * 0010 * SPDX-FileCopyrightText: 2016 by Omar Amin <Omar dot moh dot amin at gmail dot com> 0011 * SPDX-FileCopyrightText: 2016-2024 by Gilles Caulier <caulier dot gilles at gmail dot com> 0012 * 0013 * SPDX-License-Identifier: GPL-2.0-or-later 0014 * 0015 * ============================================================ */ 0016 0017 #ifndef DIGIKAM_QDATASTREAM_OVERLOADS_H 0018 #define DIGIKAM_QDATASTREAM_OVERLOADS_H 0019 0020 // Qt includes 0021 0022 #include <QDataStream> 0023 0024 // Local includes 0025 0026 #include "digikam_export.h" 0027 0028 DIGIKAM_EXPORT QDataStream& operator >> (QDataStream& dataStream, 0029 unsigned long& in); 0030 0031 DIGIKAM_EXPORT QDataStream& operator << (QDataStream& dataStream, 0032 const unsigned long& in); 0033 0034 #endif // DIGIKAM_QDATASTREAM_OVERLOADS_H