From 9a43a9abb164583656e36a87b6ccf3b7f5ba48e2 Mon Sep 17 00:00:00 2001 From: am Date: Fri, 3 Jul 2009 15:48:55 +0000 Subject: -Finished MovieModel::setDataAt() git-svn-id: file:///var/svn/repos2/shemov/trunk@375 f440f766-f032-0410-8965-dc7d17de2ca0 --- coveritem.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 coveritem.h (limited to 'coveritem.h') diff --git a/coveritem.h b/coveritem.h new file mode 100644 index 0000000..a435f90 --- /dev/null +++ b/coveritem.h @@ -0,0 +1,28 @@ +/* + 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 COVERITEM_H +#define COVERITEM_H + +class QString; + +class CoverItem { + public: + CoverItem(const QString &filename, const QString &type, const QString &md5); + ~CoverItem() {}; + const QString fileName() const { return mFilename; }; + const QString type() const { return mType; }; + const QString md5() const { return mMd5; }; + + private: + QString mFilename; + QString mType; + QString mMd5; +}; + +#endif + -- cgit v1.2.3-70-g09d2