2002-10-12 11:37:38 +00:00
|
|
|
/*
|
|
|
|
* Operator1Expr.h: interface for the COperator1Expr class.
|
|
|
|
* Copyright (c) 1996-2000 Erwin Coumans <coockie@acm.org>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute and sell this software
|
|
|
|
* and its documentation for any purpose is hereby granted without fee,
|
|
|
|
* provided that the above copyright notice appear in all copies and
|
|
|
|
* that both that copyright notice and this permission notice appear
|
|
|
|
* in supporting documentation. Erwin Coumans makes no
|
|
|
|
* representations about the suitability of this software for any
|
|
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-02-22 10:33:14 +00:00
|
|
|
/** \file Operator1Expr.h
|
|
|
|
* \ingroup expressions
|
|
|
|
*/
|
|
|
|
|
2012-10-09 13:36:42 +00:00
|
|
|
#ifndef __OPERATOR1EXPR_H__
|
|
|
|
#define __OPERATOR1EXPR_H__
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
#include "Expression.h"
|
|
|
|
|
|
|
|
class COperator1Expr : public CExpression
|
|
|
|
{
|
|
|
|
//PLUGIN_DECLARE_SERIAL_EXPRESSION (COperator1Expr,CExpression)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual bool MergeExpression(CExpression* otherexpr);
|
2004-04-24 06:40:15 +00:00
|
|
|
virtual void BroadcastOperators(VALUE_OPERATOR op);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2012-03-08 03:05:57 +00:00
|
|
|
virtual unsigned char GetExpressionID() { return COPERATOR1EXPRESSIONID; }
|
2002-10-12 11:37:38 +00:00
|
|
|
CExpression* CheckLink(std::vector<CBrokenLinkInfo*>& brokenlinks);
|
|
|
|
//virtual bool IsInside(float x,float y,float z,bool bBorderInclude = true);
|
|
|
|
virtual bool NeedsRecalculated();
|
|
|
|
void ClearModified() {
|
|
|
|
if (m_lhs)
|
|
|
|
m_lhs->ClearModified();
|
|
|
|
}
|
|
|
|
virtual CValue* Calculate();
|
|
|
|
COperator1Expr(VALUE_OPERATOR op, CExpression *lhs);
|
|
|
|
COperator1Expr();
|
|
|
|
virtual ~COperator1Expr();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
VALUE_OPERATOR m_op;
|
|
|
|
CExpression * m_lhs;
|
2009-08-18 15:37:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef WITH_CXX_GUARDEDALLOC
|
2012-06-25 09:14:37 +00:00
|
|
|
MEM_CXX_CLASS_ALLOC_FUNCS("GE:")
|
2009-08-18 15:37:31 +00:00
|
|
|
#endif
|
2002-10-12 11:37:38 +00:00
|
|
|
};
|
|
|
|
|
2012-10-09 13:36:42 +00:00
|
|
|
#endif /* __OPERATOR1EXPR_H__ */
|