Add sources

This commit is contained in:
2018-06-05 22:30:22 +02:00
parent e28912dc5e
commit 9b56ec979d
143 changed files with 8636 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#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); }
};
}