14 lines
289 B
C++
14 lines
289 B
C++
|
#include "Decoration.h"
|
||
|
|
||
|
Decoration::Decoration() : name_m("C_default") {}
|
||
|
|
||
|
Decoration::Decoration(const std::string& name) : name_m(name) {}
|
||
|
|
||
|
std::string Decoration::getName() const {
|
||
|
return name_m;
|
||
|
}
|
||
|
|
||
|
void Decoration::printDecoration() const
|
||
|
{
|
||
|
std::cout << name_m << std::endl;
|
||
|
}
|