/* * Copyright 2020 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the prior written consent of McGraw-Hill Education. */ #ifndef ALIASES_H #define ALIASES_H #include #include #include namespace lc3 { namespace core { class IOperand; class IInstruction; class IEvent; using PIOperand = std::shared_ptr; using PIInstruction = std::shared_ptr; using PIEvent = std::shared_ptr; using SymbolTable = std::map; }; }; #endif