File indexing completed on 2024-04-28 04:32:48

0001 /*
0002     SPDX-FileCopyrightText: 2008 Pino Toscano <pino@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef _OKULAR_UTILS_P_H_
0008 #define _OKULAR_UTILS_P_H_
0009 
0010 class QIODevice;
0011 
0012 namespace Okular
0013 {
0014 void copyQIODevice(QIODevice *from, QIODevice *to);
0015 
0016 /**
0017  * Return a rotation matrix corresponding to the @p rotation enumeration.
0018  */
0019 QTransform buildRotationMatrix(Rotation rotation);
0020 
0021 }
0022 
0023 #endif