Version: 9.16.0
NbBranches.cxx
Go to the documentation of this file.
1// Copyright (C) 2006-2026 CEA, EDF
2//
3// This library is free software; you can redistribute it and/or
4// modify it under the terms of the GNU Lesser General Public
5// License as published by the Free Software Foundation; either
6// version 2.1 of the License, or (at your option) any later version.
7//
8// This library is distributed in the hope that it will be useful,
9// but WITHOUT ANY WARRANTY; without even the implied warranty of
10// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11// Lesser General Public License for more details.
12//
13// You should have received a copy of the GNU Lesser General Public
14// License along with this library; if not, write to the Free Software
15// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16//
17// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18//
19
20#include "NbBranches.hxx"
21
22using namespace YACS::ENGINE;
23
24const char NbBranchesAbstract::NAME_OF_NUMBER_OF_BRANCHES[]="nbBranches";
25
26bool NbBranchesAbstract::IsBranchPortName(const std::string& name)
27{
28 return name == NAME_OF_NUMBER_OF_BRANCHES;
29}
30
31std::unique_ptr<NbBranchesAbstract> NbBranches::copy(Node *node) const
32{
33 return std::unique_ptr<NbBranchesAbstract>(new NbBranches(*this,node));
34}
35
37{
38 return this->getIntValue();
39}
40
41bool NbBranches::isMyName(const std::string& name) const
42{
44}
45
46void NbBranches::exInit(bool start)
47{
48 _nbOfBranches.exInit(start);
49}
50
52{
53 return const_cast<AnyInputPort *>(&_nbOfBranches);
54}
55
56bool NbBranches::isMultiplicitySpecified(unsigned& value) const
57{
60 {
62 return true;
63 }
64 return false;
65}
66
68{
70 _nbOfBranches.edInit((int)value);
71}
72
73std::unique_ptr<NbBranchesAbstract> NoNbBranches::copy(Node *) const
74{
75 return std::unique_ptr<NbBranchesAbstract>(new NoNbBranches);
76}
77
78int NoNbBranches::getNumberOfBranches(int nbOfElems) const
79{
80 return nbOfElems;
81}
82
83void NoNbBranches::exInit(bool start)
84{
85}
86
88{
89 return nullptr;
90}
91
92bool NoNbBranches::isMultiplicitySpecified(unsigned& value) const
93{
94 return false;
95}
96
98{
99 throw Exception("NoNbBranches::forceMultiplicity : impossible to be forced !");
100}
101
103{
104 throw Exception("NoNbBranches::getIntValue : no value stored !");
105}
virtual int edGetNumberOfLinks() const
Returns number of physical backlinks NOT number of user backlinks.
Definition: InPort.cxx:45
void edRemoveAllLinksLinkedWithMe()
Definition: InPort.cxx:50
Base class for Input Ports.
Definition: InputPort.hxx:44
virtual void exInit(bool start)
Definition: InputPort.cxx:63
virtual bool edIsManuallyInitialized() const
Specifies if this port has been manually set by the call of InputPort::edInit.
Definition: InputPort.cxx:76
void edInit(T value)
Definition: InputPort.hxx:129
static const char NAME_OF_NUMBER_OF_BRANCHES[]
Definition: NbBranches.hxx:45
static bool IsBranchPortName(const std::string &name)
Definition: NbBranches.cxx:26
void exInit(bool start) override
Definition: NbBranches.cxx:46
InputPort * getPort() const override
Definition: NbBranches.cxx:51
bool isMultiplicitySpecified(unsigned &value) const override
Definition: NbBranches.cxx:56
bool isMyName(const std::string &name) const override
Definition: NbBranches.cxx:41
std::unique_ptr< NbBranchesAbstract > copy(Node *node) const override
Definition: NbBranches.cxx:31
int getIntValue() const override
Definition: NbBranches.hxx:60
int getNumberOfBranches(int nbOfElems) const override
Definition: NbBranches.cxx:36
AnyInputPort _nbOfBranches
Definition: NbBranches.hxx:62
void forceMultiplicity(unsigned value) override
Definition: NbBranches.cxx:67
void forceMultiplicity(unsigned value) override
Definition: NbBranches.cxx:97
std::unique_ptr< NbBranchesAbstract > copy(Node *node) const override
Definition: NbBranches.cxx:73
bool isMultiplicitySpecified(unsigned &value) const override
Definition: NbBranches.cxx:92
InputPort * getPort() const override
Definition: NbBranches.cxx:87
int getIntValue() const override
Definition: NbBranches.cxx:102
void exInit(bool start) override
Definition: NbBranches.cxx:83
int getNumberOfBranches(int nbOfElems) const override
Definition: NbBranches.cxx:78
Base class for all nodes.
Definition: Node.hxx:70