First_Commit
This commit is contained in:
20
src/Order.cpp
Normal file
20
src/Order.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user