diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-01 19:17:32 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-01 19:17:32 +0000 |
commit | e38d2351b83fa65c66ccde443777647ef5cb6cff (patch) | |
tree | 1897fc20e9f73a81c520a5b9f76f8ed042124883 /src/collections/musiccollection.h | |
download | tellico-e38d2351b83fa65c66ccde443777647ef5cb6cff.tar.gz tellico-e38d2351b83fa65c66ccde443777647ef5cb6cff.zip |
Added KDE3 version of Tellico
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/tellico@1097620 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/collections/musiccollection.h')
-rw-r--r-- | src/collections/musiccollection.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/collections/musiccollection.h b/src/collections/musiccollection.h new file mode 100644 index 0000000..ddada5b --- /dev/null +++ b/src/collections/musiccollection.h @@ -0,0 +1,55 @@ +/*************************************************************************** + copyright : (C) 2003-2006 by Robby Stephenson + email : robby@periapsis.org + ***************************************************************************/ + +/*************************************************************************** + * * + * 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 MUSICCOLLECTION_H +#define MUSICCOLLECTION_H + +#include "../collection.h" + +namespace Tellico { + namespace Data { + +/** + * A collection for music, like CD's and cassettes. + * + * It has the following standard attributes: + * @li Title + * @li Artist + * @li Album + * @li Year + * @li Genre + * @li Comments + * + * @author Robby Stephenson + */ +class MusicCollection : public Collection { +Q_OBJECT + +public: + /** + * The constructor + * + * @param addFields Whether to add the default attributes + * @param title The title of the collection + */ + MusicCollection(bool addFields, const QString& title = QString::null); + + virtual Type type() const { return Album; } + virtual int sameEntry(Data::EntryPtr, Data::EntryPtr) const; + + static FieldVec defaultFields(); +}; + + } // end namespace +} // end namespace +#endif |