Design Pattern Examples
Overview of object-oriented design patterns
SortStrategyItem Struct Reference

Represents a sorting strategy. More...

Collaboration diagram for SortStrategyItem:
Collaboration graph

Public Attributes

const char * name
 Name of the sorting strategy.
 
CompareFunction compareFunction
 compare function to use for the sorting strategy
 

Detailed Description

Represents a sorting strategy.

Definition at line 84 of file Strategy_SortStrategy.c.

Member Data Documentation

◆ compareFunction

CompareFunction compareFunction

compare function to use for the sorting strategy

Definition at line 87 of file Strategy_SortStrategy.c.

Referenced by SortStrategy_Initialize().

◆ name

const char* name

Name of the sorting strategy.

Definition at line 86 of file Strategy_SortStrategy.c.

Referenced by SortStrategy_Initialize().


The documentation for this struct was generated from the following file: