File interpreter.h is the definition of the interpreter class.
#ifndef INTERPRETER_HThis macro is attached to a product file.
#define INTERPRETER_H
#include <string>
#include <vector>
#include <stack>
#include <map>
#include "visitor.h"
Declare the concrete interpreter subclass[11]
#endif