First_Commit
This commit is contained in:
19
include/Order.hpp
Normal file
19
include/Order.hpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef ORDER_HPP
|
||||
#define ORDER_HPP
|
||||
|
||||
#include <vector>
|
||||
#include "Ingredients.hpp"
|
||||
|
||||
class Order{
|
||||
private:
|
||||
std::vector<Production> product;
|
||||
std::vector<Ingredients> addtional;
|
||||
std::vector<bool> larger;
|
||||
public:
|
||||
Order(std::vector<Production> product, std::vector<Ingredients> addtional ,std::vector<bool> larger);
|
||||
std::vector<Production> GetProductInfo();
|
||||
std::vector<Ingredients> GetAddtionalInfo();
|
||||
std::vector<bool> GetLargerInfo();
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user