First_Commit

This commit is contained in:
2025-07-23 23:06:27 +08:00
commit d35d096374
27 changed files with 2528 additions and 0 deletions

20
src/Order.cpp Normal file
View File

@@ -0,0 +1,20 @@
#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;
}