Files
Herwig Birke 8f63d174f3 added Doxygen
2018-11-07 13:08:42 +01:00

37 lines
466 B
C++

#ifndef CFANARTIMAGE_H
#define CFANARTIMAGE_H
#include <QPixmap>
/*!
\brief
\class cFanartImage cfanartimage.h "cfanartimage.h"
*/
class cFanartImage
{
public:
cFanartImage();
/*!
\brief
\fn getImage
\param szFileName
\return QPixmap
*/
QPixmap getImage(const QString& szFileName);
private:
/*!
\brief
\fn downloadFile
\param szFileName
\return QPixmap
*/
QPixmap downloadFile(const QString& szFileName);
};
#endif // CFANARTIMAGE_H