diff options
Diffstat (limited to 'src/collections/videocollection.h')
-rw-r--r-- | src/collections/videocollection.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/collections/videocollection.h b/src/collections/videocollection.h new file mode 100644 index 0000000..58f729c --- /dev/null +++ b/src/collections/videocollection.h @@ -0,0 +1,54 @@ +/*************************************************************************** + copyright : (C) 2003-2006 by Robby Stephenson + email : [email protected] + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of version 2 of the GNU General Public License as * + * published by the Free Software Foundation; * + * * + ***************************************************************************/ + +#ifndef VIDEOCOLLECTION_H +#define VIDEOCOLLECTION_H + +#include "../collection.h" + +namespace Tellico { + namespace Data { + +/** + * A collection for videos. + * + * It has the following standard attributes: + * @li Title + * @li Year + * @li Genre + * @li Medium + * @li Comments + * + * @author Robby Stephenson + */ +class VideoCollection : public Collection { +Q_OBJECT + +public: + /** + * The constructor + * + * @param addFields Whether to add the default attributes + * @param title The title of the collection + */ + VideoCollection(bool addFields, const QString& title = QString::null); + + virtual Type type() const { return Video; } + virtual int sameEntry(Data::EntryPtr, Data::EntryPtr) const; + + static FieldVec defaultFields(); +}; + + } // end namespace +} // end namespace +#endif |