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

19
include/Order.hpp Normal file
View 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