1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-15 18:58:55 +01:00
Clementine-audio-player-Mac.../3rdparty/libprojectm/Preset.cpp
2010-06-06 21:43:45 +00:00

24 lines
518 B
C++
Executable File

/*
* Preset.cpp
*
* Created on: Aug 5, 2008
* Author: struktured
*/
#include "Preset.hpp"
Preset::~Preset() {}
Preset::Preset(const std::string & presetName, const std::string & presetAuthor):
_name(presetName), _author(presetAuthor) {}
void Preset::setName(const std::string & value) { _name = value; }
const std::string & Preset::name() const { return _name; }
void Preset::setAuthor(const std::string & value) { _author = value; }
const std::string & Preset::author() const { return _author; }