ocarina/include/core/tags/genre.h

27 lines
474 B
C
Raw Normal View History

/**
* @file
* Copyright 2014 (c) Anna Schumaker.
*/
#ifndef OCARINA_CORE_TAGS_GENRE_H
#define OCARINA_CORE_TAGS_GENRE_H
#include <core/tags/generic.h>
/**
* The Genre tag is used to store the name of genres added
* to the tag database.
*/
class Genre : public GenericTag {
public:
Genre(); /**< Genre tag constructor. */
/**
* Genre tag constructor.
*
* @param name Genre name.
*/
Genre(const std::string &);
};
#endif /* OCARINA_CORE_TAGS_GENRE_H */