21 lines
253 B
C++
21 lines
253 B
C++
#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); }
|
|
|
|
};
|
|
|
|
}
|