ocarina/core/tags/genre.cpp
Anna Schumaker 1e6bcf7451 Genre: Move Genre tag into a new file
- This tag now inherits from GenericTag.
- Add a Genre-specific unit test.
- Remove the genre tag section of the DESIGN file.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2014-12-04 08:31:51 -05:00

13 lines
191 B
C++

/**
* @file
* Copyright 2014 (c) Anna Schumaker.
*/
#include <core/tags/genre.h>
Genre :: Genre() : GenericTag() {}
Genre :: Genre(const std::string &name)
: GenericTag(name)
{
}