/** * @file * Copyright 2014 (c) Anna Schumaker. */ #ifndef OCARINA_CORE_TAGS_ARTIST_H #define OCARINA_CORE_TAGS_ARTIST_H #include /** * 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 */