Design Pattern Examples
Overview of object-oriented design patterns
MoveCommandDown Class Reference

Represents the Move Down command. More...

#include <Null_Object.h>

Inheritance diagram for MoveCommandDown:
Inheritance graph
Collaboration diagram for MoveCommandDown:
Collaboration graph

Public Member Functions

 MoveCommandDown (std::string command)
 Constructor.
 
void Execute () override
 Executes the move down command.
 
- Public Member Functions inherited from MoveCommand
virtual ~MoveCommand ()
 Virtual destructor required for interfaces/base classes.
 
std::string Name ()
 Name of the command (assigned in the class constructor).
 
std::string Command ()
 The command character from the original list of commands. Used when displaying the commands as opposed to when executing the commands (assigned in the class constructor).
 
 MoveCommand (std::string command, std::string commandName)
 Constructor.
 
virtual void Show ()
 Display the move command and its name followed by a newline.
 
virtual void Execute ()=0
 Execute the command. Derived classes must implement this.
 

Additional Inherited Members

- Public Types inherited from MoveCommand
using shared_ptr_t = std::shared_ptr< MoveCommand >
 Alias to make it easier to work with a shared pointer.
 

Detailed Description

Represents the Move Down command.

Definition at line 203 of file Null_Object.h.

Constructor & Destructor Documentation

◆ MoveCommandDown()

MoveCommandDown ( std::string  command)
inline

Constructor.

Parameters
commandThe character representing the move in the original move list.

Definition at line 211 of file Null_Object.h.

Member Function Documentation

◆ Execute()

void Execute ( )
inlineoverridevirtual

Executes the move down command.

Implements MoveCommand.

Definition at line 219 of file Null_Object.h.


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