okular/core/utils_p.h
Pino Toscano cd6f369fc1 add an internal function to "pump" to the content of a QIODevice to another one
svn path=/trunk/KDE/kdegraphics/okular/; revision=884563
2008-11-15 12:33:05 +00:00

23 lines
776 B
C++

/***************************************************************************
* Copyright (C) 2008 by Pino Toscano <pino@kde.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef _OKULAR_UTILS_P_H_
#define _OKULAR_UTILS_P_H_
class QIODevice;
namespace Okular
{
void copyQIODevice( QIODevice *from, QIODevice *to );
}
#endif