Initial work on calculator program.
This commit is contained in:
17
calculator/Product.h
Normal file
17
calculator/Product.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user