Update README.md

This commit is contained in:
Ilkka Seppälä 2014-08-23 18:48:18 +03:00
parent 522cdfe277
commit db4625b9fe

View File

@ -70,3 +70,5 @@
##Template method
**Intent:** Define the skeleton of an algorithm in an operation, deferring some steps to subclasses. Template method lets subclasses redefine certain steps of an algorithm without changing the algorithm's structure.
##Visitor
**Intent:** Represent an operation to be performed on the elements of an object structure. Visitor lets you define a new operation without changing the classes of the elements on which it operates.