ocarina/include/core/tags/artist.h

27 lines
484 B
C
Raw Normal View History

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