added Doxygen

This commit is contained in:
Herwig Birke
2018-11-07 13:08:42 +01:00
parent 1fb97e1891
commit 8f63d174f3
34 changed files with 6133 additions and 235 deletions
+19
View File
@@ -5,12 +5,31 @@
#include <QPixmap>
/*!
\brief
\class cMovieImage cmovieimage.h "cmovieimage.h"
*/
class cMovieImage
{
public:
cMovieImage();
/*!
\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);
};