]> SALOME platform Git repositories - tools/medcoupling.git/blobdiff - src/ParaMEDMEM/Topology.hxx
Salome HOME
refactor!: remove adm_local/ directory
[tools/medcoupling.git] / src / ParaMEDMEM / Topology.hxx
index 4b10f8b43cdbfe74a7c0ce85801b35e6d0ee49c2..49805e944e09c1d2557ca2cd82f4d3eafdc51248 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2015  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2024  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 #ifndef __TOPOLOGY_HXX__
 #define __TOPOLOGY_HXX__
 
-#include <utility>
+#include "MCType.hxx"
 
-namespace ParaMEDMEM
+namespace MEDCoupling
 {
   class ProcessorGroup;
 
+  /*!
+   * Topology of a group of processors within a processor group. Abstract class, see derivations.
+   *
+   * \sa BlockTopology
+   * \sa ExplicitTopology
+   * \sa MPIProcessorGroup
+   */
   class Topology
   {
   public:
     Topology() { }
     virtual ~Topology() { }
-    virtual int getNbElements() const = 0;
-    virtual int getNbLocalElements() const  = 0;
+    virtual mcIdType getNbElements() const = 0;
+    virtual mcIdType getNbLocalElements() const  = 0;
     virtual const ProcessorGroup* getProcGroup()const  = 0;
   };
 }