#pragma once #include "../Unary.h" namespace AST { class UnaryPlus : public Unary { public: explicit UnaryPlus (const Expression * pExpr); virtual ~UnaryPlus (void); virtual EUnaryType getUnaryType (void) const { return(Unary::PLUS); } }; }