X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPlugins%2FMEDReader%2FIO%2FMEDUtilities.hxx;h=fbbbebfe4ed313ad770e1493c742480076b6e400;hb=0aca9e62c928f151af43789b5fd908a774758922;hp=b9be2e32848603cecd9fbe15a01080bc9db99faf;hpb=ab03dc1c10db590a94536495b779ab762f5690d6;p=modules%2Fparavis.git diff --git a/src/Plugins/MEDReader/IO/MEDUtilities.hxx b/src/Plugins/MEDReader/IO/MEDUtilities.hxx index b9be2e32..fbbbebfe 100644 --- a/src/Plugins/MEDReader/IO/MEDUtilities.hxx +++ b/src/Plugins/MEDReader/IO/MEDUtilities.hxx @@ -1,9 +1,9 @@ -// Copyright (C) 2010-2014 CEA/DEN, EDF R&D +// Copyright (C) 2010-2016 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. +// 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 @@ -21,13 +21,39 @@ #ifndef __MEDUTILITIES_HXX__ #define __MEDUTILITIES_HXX__ +#include "MEDLoaderForPV.h" +#include "vtkCellType.h" + +#include + class vtkInformationIntegerKey; -class MEDUtilities +class MEDLOADERFORPV_EXPORT MEDUtilities { public: static vtkInformationIntegerKey *ELGA(); static vtkInformationIntegerKey *ELNO(); }; +class ExportedTinyInfo +{ +public: + void pushGaussAdditionnalInfo(int ct, int dim, const std::vector& refCoo, const std::vector& posInRefCoo); + const std::vector& getData() const { return _data; } + bool empty() const { return _data.empty(); } +private: + void prepareForAppend(); +private: + // first place is nb of ct + // 2nd place is the size of first ct def (this 2nd place included) + // 3rd place is the VTK cell type of first ct def + // 4th place is the dimension of first ct def + // 5th->n th : ref Coo + // nth -> n+p th : posInRefCoo + // n+p+1 -> size of second ct def (this n+p+1 place included) + // n+p+2 -> VTK cell type of second ct def + // ... + std::vector _data; +}; + #endif