diff options
Diffstat (limited to 'src/collections/coincollection.h')
-rw-r--r-- | src/collections/coincollection.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/collections/coincollection.h b/src/collections/coincollection.h new file mode 100644 index 0000000..d22937d --- /dev/null +++ b/src/collections/coincollection.h @@ -0,0 +1,49 @@ +/*************************************************************************** + 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 COINCOLLECTION_H +#define COINCOLLECTION_H + +#include "../collection.h" + +namespace Tellico { + namespace Data { + +/** + * A collection for coins. + * + * It has the following standard attributes: + * @li Title + * + * @author Robby Stephenson + */ +class CoinCollection : public Collection { +Q_OBJECT + +public: + /** + * The constructor + * + * @param addFields Whether to add the default attributes + * @param title The title of the collection + */ + CoinCollection(bool addFields, const QString& title = QString::null); + + virtual Type type() const { return Coin; } + + static FieldVec defaultFields(); +}; + + } // end namespace +} // end namespace +#endif |