X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FMEDPartitioner%2FMEDPARTITIONER_JointFinder.hxx;h=9e9f44ca64eeb205533ed1c58d6edd7093dd849e;hb=b307fa3ee9c6d9e08082e2ccc832b28a17fd6d2c;hp=9cd52efba3a32722bfce591b971acf062ebafb3c;hpb=3c911ce36f5caa779ea60042e738fa57671a44b1;p=tools%2Fmedcoupling.git diff --git a/src/MEDPartitioner/MEDPARTITIONER_JointFinder.hxx b/src/MEDPartitioner/MEDPARTITIONER_JointFinder.hxx index 9cd52efba..9e9f44ca6 100644 --- a/src/MEDPartitioner/MEDPARTITIONER_JointFinder.hxx +++ b/src/MEDPartitioner/MEDPARTITIONER_JointFinder.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2015 CEA/DEN, EDF R&D +// Copyright (C) 2007-2021 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 @@ -20,6 +20,9 @@ #ifndef __MEDPARTITIONER_JOINTFINDER_HXX__ #define __MEDPARTITIONER_JOINTFINDER_HXX__ +#include "MEDPARTITIONER.hxx" +#include "MCType.hxx" + #include #include @@ -29,21 +32,21 @@ namespace MEDPARTITIONER class MeshCollection; class ParaDomainSelector; - class JointFinder + class MEDPARTITIONER_EXPORT JointFinder { public: JointFinder(const MeshCollection& mc); ~JointFinder(); void findCommonDistantNodes(); void print(); - std::vector > >& getDistantNodeCell(); - std::vector > > >& getNodeNode(); + std::vector > >& getDistantNodeCell(); + std::vector > > >& getNodeNode(); private: const MeshCollection& _mesh_collection; const ParaDomainSelector *_domain_selector; const Topology *_topology; - std::vector > > _distant_node_cell; - std::vector > > > _node_node; + std::vector > > _distant_node_cell; + std::vector > > > _node_node; }; }