Salome HOME
Update copyrights
[tools/medcoupling.git] / src / INTERP_KERNEL / RegionNode.hxx
1 // Copyright (C) 2007-2019  CEA/DEN, EDF R&D
2 //
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.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef __REGIONNODE_HXX__
21 #define __REGIONNODE_HXX__
22
23 #include "MeshRegion.hxx"
24
25 namespace INTERP_KERNEL
26 {
27
28   /**
29    * \brief Class containing a tuplet of a source region and a target region. 
30    * This is used as the object to put on the stack in the depth-first search
31    * in the bounding-box filtering process.
32    */
33   template<class ConnType>
34   class RegionNode
35   {
36   public:
37     
38     RegionNode() { }
39     
40     ~RegionNode() { }
41     
42     /**
43      *  Accessor to source region
44      *
45      * @return   reference to source region
46      */
47     MeshRegion<ConnType>& getSrcRegion() { return _srcRegion; }
48
49     /**
50      *  Accessor to target region
51      *
52      * @return   reference to target region
53      */
54     MeshRegion<ConnType>& getTargetRegion() { return _targetRegion; }
55
56   private:
57     
58     /// source region
59     MeshRegion<ConnType> _srcRegion;          
60     
61     /// target region
62     MeshRegion<ConnType> _targetRegion;       
63
64   };
65
66 }
67
68 #endif