Add sources
This commit is contained in:
20
src/AST/Expressions/Relational/LessThan.h
Normal file
20
src/AST/Expressions/Relational/LessThan.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#pragma once
|
||||
|
||||
#include "../Binary.h"
|
||||
|
||||
namespace AST
|
||||
{
|
||||
|
||||
class LessThan : public Binary
|
||||
{
|
||||
|
||||
public:
|
||||
|
||||
explicit LessThan (const Expression * lhs, const Expression * rhs);
|
||||
virtual ~LessThan (void);
|
||||
|
||||
virtual EBinaryType getBinaryType (void) const { return(Binary::LT); }
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user