-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinclude.hpp
More file actions
59 lines (47 loc) · 2.19 KB
/
Copy pathinclude.hpp
File metadata and controls
59 lines (47 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#ifndef INCLUDE
#define INCLUDE
#include "prototype/header/fastfood_client.hpp"
#include "prototype/header/fastfood_creator.hpp"
#include "prototype/header/fastfood_restaurant.hpp"
#include "prototype/header/fastfood_category_burger.hpp"
#include "prototype/header/fastfood_category_taco.hpp"
#include "prototype/header/fastfood_category_pizza.hpp"
#include "interface/fastfood_display.hpp"
/* BURGERS */
#include "composite/menu_component.hpp"
#include "composite/menu_burger/header/menu_mcdonalds.hpp"
#include "composite/menu_burger/header/menu_items_mcdonalds.hpp"
#include "interface/menu_mcdonalds_display.hpp"
#include "composite/menu_burger/header/menu_chickfila.hpp"
#include "composite/menu_burger/header/menu_items_chickfila.hpp"
#include "interface/menu_chickfila_display.hpp"
#include "composite/menu_burger/header/menu_innout.hpp"
#include "composite/menu_burger/header/menu_items_innout.hpp"
#include "interface/menu_innout_display.hpp"
/* TACOS */
#include "composite/menu_taco/header/menu_deltaco.hpp"
#include "composite/menu_taco/header/menu_items_deltaco.hpp"
#include "interface/menu_deltaco_display.hpp"
#include "composite/menu_taco/header/menu_tacobell.hpp"
#include "composite/menu_taco/header/menu_items_tacobell.hpp"
#include "interface/menu_tacobell_display.hpp"
#include "composite/menu_taco/header/menu_elpolloloco.hpp"
#include "composite/menu_taco/header/menu_items_elpolloloco.hpp"
#include "interface/menu_elpolloloco_display.hpp"
/* PIZZAS */
#include "composite/menu_pizza/header/menu_dominos.hpp"
#include "composite/menu_pizza/header/menu_items_dominos.hpp"
#include "interface/menu_dominos_display.hpp"
#include "composite/menu_pizza/header/menu_pizzahut.hpp"
#include "composite/menu_pizza/header/menu_items_pizzahut.hpp"
#include "interface/menu_pizzahut_display.hpp"
#include "composite/menu_pizza/header/menu_papajohns.hpp"
#include "composite/menu_pizza/header/menu_items_papajohns.hpp"
#include "interface/menu_papajohns_display.hpp"
#include "composite/cart_component.hpp"
#include "composite/cart/cart_items.hpp"
#include "composite/cart/user_cart.hpp"
#include "composite/party_component.hpp"
#include "composite/party/party.hpp"
#include "composite/party/user.hpp"
#endif /* INCLUDE */