-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDesignPatterns.h
More file actions
38 lines (33 loc) · 764 Bytes
/
DesignPatterns.h
File metadata and controls
38 lines (33 loc) · 764 Bytes
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
//
// DesignPatterns.h
// DesignPatterns
//
// Created by Max Reshetey on 04/12/2016.
// Copyright © 2016 Max Reshetey. All rights reserved.
//
#ifndef DesignPatterns_h
#define DesignPatterns_h
#include "AbstractFactory.h"
#include "Builder.h"
#include "FactoryMethod.h"
#include "Prototype.h"
#include "Singleton.h"
#include "Adapter.h"
#include "Bridge.h"
#include "Composite.h"
#include "Decorator.h"
#include "Facade.h"
#include "Flyweight.h"
#include "Proxy.h"
#include "ChainOfResponsibility.h"
#include "Command.h"
#include "Interpreter.h"
#include "Iterator.h"
#include "Mediator.h"
#include "Memento.h"
#include "Observer.h"
#include "State.h"
#include "Strategy.h"
#include "TemplateMethod.h"
#include "Visitor.h"
#endif /* DesignPatterns_h */