Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:03:27

0001 // Created on: 1991-01-10
0002 // Created by: Arnaud BOUZY
0003 // Copyright (c) 1991-1999 Matra Datavision
0004 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0005 //
0006 // This file is part of Open CASCADE Technology software library.
0007 //
0008 // This library is free software; you can redistribute it and/or modify it under
0009 // the terms of the GNU Lesser General Public License version 2.1 as published
0010 // by the Free Software Foundation, with special exception defined in the file
0011 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0012 // distribution for complete text of the license and disclaimer of any warranty.
0013 //
0014 // Alternatively, this file may be used under the terms of Open CASCADE
0015 // commercial license or contractual agreement.
0016 
0017 #ifndef _Expr_UnaryExpression_HeaderFile
0018 #define _Expr_UnaryExpression_HeaderFile
0019 
0020 #include <Standard.hxx>
0021 #include <Standard_Type.hxx>
0022 
0023 #include <Expr_GeneralExpression.hxx>
0024 #include <Standard_Integer.hxx>
0025 class Expr_NamedUnknown;
0026 
0027 
0028 class Expr_UnaryExpression;
0029 DEFINE_STANDARD_HANDLE(Expr_UnaryExpression, Expr_GeneralExpression)
0030 
0031 
0032 class Expr_UnaryExpression : public Expr_GeneralExpression
0033 {
0034 
0035 public:
0036 
0037   
0038   //! Returns the operand used
0039     const Handle(Expr_GeneralExpression)& Operand() const;
0040   
0041   //! Sets the operand used
0042   //! Raises InvalidOperand if <exp> contains <me>.
0043   Standard_EXPORT void SetOperand (const Handle(Expr_GeneralExpression)& exp);
0044   
0045   //! Returns the number of sub-expressions contained
0046   //! in <me> ( >= 0)
0047   Standard_EXPORT Standard_Integer NbSubExpressions() const Standard_OVERRIDE;
0048   
0049   //! Returns the <I>-th sub-expression of <me>.
0050   //! Raises OutOfRange if <I> > NbSubExpressions(me)
0051   Standard_EXPORT const Handle(Expr_GeneralExpression)& SubExpression (const Standard_Integer I) const Standard_OVERRIDE;
0052   
0053   //! Does <me> contains NamedUnknown ?
0054   Standard_EXPORT Standard_Boolean ContainsUnknowns() const Standard_OVERRIDE;
0055   
0056   //! Tests if <exp> is contained in <me>.
0057   Standard_EXPORT Standard_Boolean Contains (const Handle(Expr_GeneralExpression)& exp) const Standard_OVERRIDE;
0058   
0059   //! Replaces all occurrences of <var> with <with> in <me>
0060   //! Raises InvalidOperand if <with> contains <me>.
0061   Standard_EXPORT void Replace (const Handle(Expr_NamedUnknown)& var, const Handle(Expr_GeneralExpression)& with) Standard_OVERRIDE;
0062   
0063   //! Returns a GeneralExpression after replacement of
0064   //! NamedUnknowns by an associated expression, and after
0065   //! values computation.
0066   Standard_EXPORT Handle(Expr_GeneralExpression) Simplified() const Standard_OVERRIDE;
0067 
0068 
0069 
0070 
0071   DEFINE_STANDARD_RTTIEXT(Expr_UnaryExpression,Expr_GeneralExpression)
0072 
0073 protected:
0074 
0075   
0076   //! Sets the operand used during creation
0077   Standard_EXPORT void CreateOperand (const Handle(Expr_GeneralExpression)& exp);
0078 
0079 
0080 
0081 private:
0082 
0083 
0084   Handle(Expr_GeneralExpression) myOperand;
0085 
0086 
0087 };
0088 
0089 
0090 #include <Expr_UnaryExpression.lxx>
0091 
0092 
0093 
0094 
0095 
0096 #endif // _Expr_UnaryExpression_HeaderFile