Files
OOP2024f_HW3/src/Order.cpp
2025-07-23 23:06:27 +08:00

20 lines
436 B
C++

#include <Order.hpp>
Order::Order(std::vector<Production> product, std::vector<Ingredients> addtional, std::vector<bool> larger) {
this->addtional = addtional;
this->product = product;
this->larger = larger;
}
std::vector<Production> Order::GetProductInfo(){
return product;
}
std::vector<Ingredients> Order::GetAddtionalInfo(){
return addtional;
}
std::vector<bool> Order::GetLargerInfo(){
return larger;
}