23 lines
339 B
C
23 lines
339 B
C
|
#ifndef DECORATION_H
|
||
|
#define DECORATION_H
|
||
|
|
||
|
#include<iostream>
|
||
|
#include <string>
|
||
|
|
||
|
class Decoration {
|
||
|
private:
|
||
|
std::string name_m;
|
||
|
|
||
|
public:
|
||
|
// Constructors
|
||
|
Decoration();
|
||
|
Decoration(const std::string& name);
|
||
|
|
||
|
// Getters
|
||
|
std::string getName() const;
|
||
|
|
||
|
// Others
|
||
|
void printDecoration() const;
|
||
|
};
|
||
|
|
||
|
#endif // CITY_H
|