--- /dev/null
+// Copyright (C) 2007-2020 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, 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.
+//
+// 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
+//
+
+// WARNING: this file is part of the official ICoCo API and should not be modified.
+// The official version can be found at the following URL:
+//
+// https://github.com/cea-trust-platform/icoco-coupling
+
+#ifndef ICoCo_included
+
+#ifdef WIN32
+# if defined medicoco_EXPORTS
+# define MEDCOUPLINGICOCO_EXPORT __declspec( dllexport )
+# else
+# define MEDCOUPLINGICOCO_EXPORT __declspec( dllimport )
+# endif
+#else
+# define MEDCOUPLINGICOCO_EXPORT
+#endif
+
+#endif // ICoCo_included
#define ICoCoField_included
#include <string>
+#include "ICoCo.hxx"
+
namespace ICoCo
{
/*! @brief Top abstract class defining field objects that can be exchanged via the ICoCo interface.
*
* The Field class holds the name of the field.
*/
- class Field
+ class MEDCOUPLINGICOCO_EXPORT Field
{
public:
/*! @brief Set the name of the field.
#define ICoCoMEDDoubleField_included
#include "ICoCoField.hxx"
+#include "ICoCo.hxx"
namespace MEDCoupling
{
* @sa the MEDCoupling documentation, notably the reference counter mechanism used to manage the lifecycle of
* MEDCoupling objects.
*/
- class MEDDoubleField : public ICoCo::Field
+ class MEDCOUPLINGICOCO_EXPORT MEDDoubleField : public ICoCo::Field
{
public:
/*! Builds an empty field (internal MEDCoupling object not set).
* @sa the MEDCoupling documentation, notably the reference counter mechanism used to manage the lifecycle of
* MEDCoupling objects.
*/
- class MEDIntField : public ICoCo::Field
+ class MEDCOUPLINGICOCO_EXPORT MEDIntField : public ICoCo::Field
{
public:
/*! Builds an empty field (internal MEDCoupling object not set).