Salome HOME
Manage initnode and finalizenode in the foreachloop progress bar.
[modules/yacs.git] / src / engine / DataStreamPort.hxx
index 7dcffdd33ba6695a6267b3a3d4f92c0af470a82f..8f10c88d95cc218d36c4075c4355f2d8828d323a 100644 (file)
@@ -1,24 +1,26 @@
-//  Copyright (C) 2006-2008  CEA/DEN, EDF R&D
+// Copyright (C) 2006-2015  CEA/DEN, EDF R&D
 //
-//  This library is free software; you can redistribute it and/or
-//  modify it under the terms of the GNU Lesser General Public
-//  License as published by the Free Software Foundation; either
-//  version 2.1 of the License.
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
 //
-//  This library is distributed in the hope that it will be useful,
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-//  Lesser General Public License for more details.
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
-//  You should have received a copy of the GNU Lesser General Public
-//  License along with this library; if not, write to the Free Software
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
 #ifndef __DATASTREAMPORT_HXX__
 #define __DATASTREAMPORT_HXX__
 
+#include "YACSlibEngineExport.hxx"
 #include "DataPort.hxx"
 
 #include <string>
@@ -28,7 +30,7 @@ namespace YACS
 {
   namespace ENGINE
   {
-    class DataStreamPort : public virtual DataPort
+    class YACSLIBENGINE_EXPORT DataStreamPort : public virtual DataPort
     {
     public:
       static const char NAME[];
@@ -42,7 +44,7 @@ namespace YACS
       virtual void setProperty(const std::string& name,const std::string& value);
       virtual void setProperties(std::map<std::string,std::string> properties);
       virtual std::string getProperty(const std::string& name);
-      std::map<std::string,std::string> getPropertyMap() const { return _propertyMap; }
+      std::map<std::string,std::string> getProperties() const { return _propertyMap; }
       virtual void initPortProperties();
       virtual ~DataStreamPort();
       virtual std::string typeName() {return "YACS__ENGINE__DataStreamPort";}