Design Pattern Examples
Overview of object-oriented design patterns
strategy_isortentries.py File Reference

Declaration of the SortOptions enumeration and the implementation of the ISortEntries interface as used in the Strategy Pattern. More...

Go to the source code of this file.

Classes

class  SortOptions
 Identifies the different sorting strategies available. More...
 
class  ISortEntries
 Represents a sorting strategy. More...
 

Namespaces

namespace  DesignPatternExamples_python
 The DesignPatternExamples_python package, containing 20 examples of design patterns, each in their own namespace.
 
namespace  DesignPatternExamples_python.strategy
 
namespace  DesignPatternExamples_python.strategy.strategy_isortentries
 

Detailed Description

Declaration of the SortOptions enumeration and the implementation of the ISortEntries interface as used in the Strategy Pattern.

Definition in file strategy_isortentries.py.