Design Pattern Examples
Overview of object-oriented design patterns
Interpreter_Class.h File Reference

Declaration of the Interpreter_Class class used in the Interpreter Pattern. More...

#include <string>
#include <vector>
Include dependency graph for Interpreter_Class.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  Interpreter_Class
 Representation of a simple interpreter. More...
 

Namespaces

namespace  DesignPatternExamples_cpp
 The namespace containing all Design Pattern Examples implemented in C++.
 

Macros

#define __INTERPRETER_CLASS_H__
 

Typedefs

using IntList = std::vector< int >
 Alias to make it easier to work with a vector of vectors of int.
 

Detailed Description

Declaration of the Interpreter_Class class used in the Interpreter Pattern.

Definition in file Interpreter_Class.h.

Macro Definition Documentation

◆ __INTERPRETER_CLASS_H__

#define __INTERPRETER_CLASS_H__

Definition at line 8 of file Interpreter_Class.h.