18 lines
219 B
C++
18 lines
219 B
C++
#ifndef SATISFACTORY_PRODUCT_H
|
|
#define SATISFACTORY_PRODUCT_H
|
|
|
|
#include <string>
|
|
|
|
class Product {
|
|
public:
|
|
Product() {}
|
|
~Product() {}
|
|
|
|
std::string Name() const { return name; }
|
|
|
|
private:
|
|
std::string name;
|
|
};
|
|
|
|
#endif
|