mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-06 10:36:12 +03:00
17 lines
388 B
Plaintext
Executable File
17 lines
388 B
Plaintext
Executable File
// Copyright: Matra-Datavision 1994
|
|
// File: Expr_BinaryExpression.lxx
|
|
// Created: Wed Jan 5 15:28:12 1994
|
|
// Author: Arnaud BOUZY
|
|
// <adn>
|
|
|
|
inline const Handle(Expr_GeneralExpression)& Expr_BinaryExpression::FirstOperand() const
|
|
{
|
|
return myFirstOperand;
|
|
}
|
|
|
|
inline const Handle(Expr_GeneralExpression)& Expr_BinaryExpression::SecondOperand () const
|
|
{
|
|
return mySecondOperand;
|
|
}
|
|
|