mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-22 20:59:38 +08:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
113 lines
3.4 KiB
Plaintext
113 lines
3.4 KiB
Plaintext
-- Created on: 1991-01-10
|
|
-- Created by: Arnaud BOUZY
|
|
-- Copyright (c) 1991-1999 Matra Datavision
|
|
-- Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
--
|
|
-- This file is part of Open CASCADE Technology software library.
|
|
--
|
|
-- This library is free software; you can redistribute it and/or modify it under
|
|
-- the terms of the GNU Lesser General Public License version 2.1 as published
|
|
-- by the Free Software Foundation, with special exception defined in the file
|
|
-- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
-- distribution for complete text of the license and disclaimer of any warranty.
|
|
--
|
|
-- Alternatively, this file may be used under the terms of Open CASCADE
|
|
-- commercial license or contractual agreement.
|
|
|
|
deferred class BinaryExpression from Expr
|
|
|
|
inherits GeneralExpression from Expr
|
|
---Purpose: Defines all binary expressions. The order of the two
|
|
-- operands is significant.
|
|
|
|
uses NamedUnknown from Expr
|
|
|
|
raises OutOfRange from Standard,
|
|
NumericError from Standard,
|
|
InvalidOperand from Expr
|
|
|
|
is
|
|
|
|
FirstOperand(me)
|
|
---C++: inline
|
|
---C++: return const &
|
|
---Level : Internal
|
|
returns any GeneralExpression
|
|
is static;
|
|
|
|
SecondOperand(me)
|
|
---C++: inline
|
|
---C++: return const &
|
|
---Level : Internal
|
|
returns any GeneralExpression
|
|
is static;
|
|
|
|
SetFirstOperand(me : mutable; exp : GeneralExpression)
|
|
---Purpose: Sets first operand of <me>
|
|
-- Raises InvalidOperand if exp = me
|
|
---Level : Internal
|
|
raises InvalidOperand
|
|
is static;
|
|
|
|
SetSecondOperand(me : mutable; exp : GeneralExpression)
|
|
---Purpose: Sets second operand of <me>
|
|
-- Raises InvalidOperand if <exp> contains <me>.
|
|
---Level : Internal
|
|
raises InvalidOperand
|
|
is static;
|
|
|
|
CreateFirstOperand(me : mutable; exp : GeneralExpression)
|
|
---Purpose: Sets first operand of <me>
|
|
---Level : Internal
|
|
is static protected;
|
|
|
|
CreateSecondOperand(me : mutable; exp : GeneralExpression)
|
|
---Purpose: Sets second operand of <me>
|
|
-- Raises InvalidOperand if <exp> contains <me>.
|
|
---Level : Internal
|
|
is static protected;
|
|
|
|
NbSubExpressions(me)
|
|
---Purpose: returns the number of sub-expressions contained
|
|
-- in <me> ( >= 0)
|
|
returns Integer
|
|
is static;
|
|
|
|
SubExpression(me; I : Integer)
|
|
---Purpose: returns the <I>-th sub-expression of <me>
|
|
-- raises OutOfRange if <I> > NbSubExpressions(me)
|
|
---C++: return const &
|
|
returns any GeneralExpression
|
|
raises OutOfRange
|
|
is static;
|
|
|
|
ContainsUnknowns(me)
|
|
---Purpose: Does <me> contain NamedUnknown ?
|
|
returns Boolean
|
|
is static;
|
|
|
|
Contains(me; exp : GeneralExpression)
|
|
---Purpose: Tests if <me> contains <exp>.
|
|
returns Boolean
|
|
is static;
|
|
|
|
Replace(me : mutable ; var : NamedUnknown ; with : GeneralExpression)
|
|
---Purpose: Replaces all occurences of <var> with <with> in <me>.
|
|
-- Raises InvalidOperand if <with> contains <me>.
|
|
raises InvalidOperand
|
|
is static;
|
|
|
|
Simplified(me)
|
|
---Purpose: Returns a GeneralExpression after replacement of
|
|
-- NamedUnknowns by an associated expression and after
|
|
-- values computation.
|
|
returns any GeneralExpression
|
|
raises NumericError;
|
|
|
|
fields
|
|
|
|
myFirstOperand : GeneralExpression;
|
|
mySecondOperand : GeneralExpression;
|
|
|
|
end BinaryExpression;
|