1 // Copyright (C) 2006-2014 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #include "DataPort.hxx"
21 #include "TypeCode.hxx"
24 using namespace YACS::ENGINE;
27 const char DataPort::NAME[]="DataPort";
34 DataPort::DataPort(const std::string& name, Node *node, TypeCode* type):Port(node),_name(name),_type(type)
39 DataPort::DataPort(const DataPort& other, Node *newHelder):Port(other,newHelder),_name(other._name),_type(other._type)
44 void DataPort::edSetType(TypeCode* type)
53 string DataPort::getNameOfTypeOfCurrentInstance() const
58 bool DataPort::isDifferentTypeOf(const DataPort *other) const
60 return getTypeOfChannel()!=other->getTypeOfChannel();
64 * If in historyOfLink different type of Port are detected : The first one (by starting from the end of 'historyOfLink')
65 * is returned. Else 0 is returned if they are all of the same type.
67 DataPort *DataPort::isCrossingType(const std::vector<DataPort *>& historyOfLink)
69 vector<DataPort *>::const_reverse_iterator iter=historyOfLink.rbegin()+1;
70 const DataPort *base=historyOfLink.back();
71 for(;iter!=historyOfLink.rend();iter++)
72 if(base->isDifferentTypeOf(*iter))
77 //! returns port value as a string that can be used in a GUI for example
79 * Do nothing here. To subclass
81 std::string DataPort::getAsString()