Salome HOME
c12dc6b681a05363f94cb6c7331878b0db6118c2
[modules/med.git] / src / MEDCoupling / MEDCouplingSkyLineArray.hxx
1 // Copyright (C) 2007-2015  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 __PARAMEDMEM_MEDCOUPLINGSKYLINEARRAY_HXX__
21 #define __PARAMEDMEM_MEDCOUPLINGSKYLINEARRAY_HXX__
22
23 #include "MEDCoupling.hxx"
24 #include "MEDCouplingMemArray.hxx"
25 #include "MEDCouplingAutoRefCountObjectPtr.hxx"
26
27 #include <vector>
28
29 namespace ParaMEDMEM
30 {
31   class MEDCOUPLING_EXPORT MEDCouplingSkyLineArray
32   {
33   private:
34     MEDCouplingAutoRefCountObjectPtr<DataArrayInt> _index;
35     MEDCouplingAutoRefCountObjectPtr<DataArrayInt> _value;
36   public:
37     MEDCouplingSkyLineArray();
38     MEDCouplingSkyLineArray( const MEDCouplingSkyLineArray &myArray );
39     MEDCouplingSkyLineArray( const std::vector<int>& index, const std::vector<int>& value );
40     MEDCouplingSkyLineArray( DataArrayInt* index, DataArrayInt* value );
41     ~MEDCouplingSkyLineArray();
42
43     void set( DataArrayInt* index, DataArrayInt* value );
44
45     int getNumberOf() const { return _index->getNbOfElems()-1; }
46     int getLength()   const { return _value->getNbOfElems(); }
47     const int* getIndex() const { return _index->begin(); }
48     const int* getValue() const { return _value->begin(); }
49
50     DataArrayInt* getIndexArray() const;
51     DataArrayInt* getValueArray() const;
52
53     std::string simpleRepr() const;
54   };
55 }
56 # endif