mirror of
https://github.com/projectM-visualizer/projectm.git
synced 2026-02-06 05:45:34 +00:00
git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/personal/carm/represet@1138 6778bc44-b910-0410-a7a0-be141de4315d
24 lines
518 B
C++
Executable File
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; }
|
|
|
|
|