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

Represents an individual with a Name, Age, and Height. More...

#include <Strategy_SortStrategy.h>

Collaboration diagram for EntryInformation:
Collaboration graph

Public Attributes

const char * Name
 Name of this individual.
 
int Age
 Age of this individual, in years.
 
int Height
 Height of this individual, in inches.
 

Detailed Description

Represents an individual with a Name, Age, and Height.

Definition at line 15 of file Strategy_SortStrategy.h.

Member Data Documentation

◆ Age

int Age

Age of this individual, in years.

Definition at line 25 of file Strategy_SortStrategy.h.

Referenced by _Compare_Age(), Display_Entries(), and ToString().

◆ Height

int Height

Height of this individual, in inches.

Definition at line 30 of file Strategy_SortStrategy.h.

Referenced by _Compare_Height(), Display_Entries(), and ToString().

◆ Name

const char* Name

Name of this individual.

Definition at line 20 of file Strategy_SortStrategy.h.

Referenced by _Compare_Name(), Display_Entries(), Visitor_Shop::PickupOrder(), Visitor_Shop::PlaceOrder(), and ToString().


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