Files
OOP2024f_HW3/include/Order.hpp
2025-07-23 23:06:27 +08:00

19 lines
470 B
C++

#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