X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPIPELINE%2FVISU_MeshPL.hxx;h=d4f79fbda513dd9138947605eee4c80e44b3aa4d;hb=1f9d5836e71aac9c59192e955e63465940ef7a6f;hp=6ada3e680ed0967776ce455025b2b205ce6a5730;hpb=e967b0415406f4f86ca2c9489abc8554b4c15dae;p=modules%2Fvisu.git diff --git a/src/PIPELINE/VISU_MeshPL.hxx b/src/PIPELINE/VISU_MeshPL.hxx index 6ada3e68..d4f79fbd 100644 --- a/src/PIPELINE/VISU_MeshPL.hxx +++ b/src/PIPELINE/VISU_MeshPL.hxx @@ -1,45 +1,62 @@ -// VISU OBJECT : interactive object for VISU entities implementation +// Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// +// 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. // -// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// -// 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. -// -// This library is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Lesser General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public -// License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. // +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// File: VISU_PipeLine.hxx +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// + +// VISU OBJECT : interactive object for VISU entities implementation +// File: VISU_MeshPL.hxx // Author: Alexey PETROV // Module : VISU - +// #ifndef VISU_MeshPL_HeaderFile #define VISU_MeshPL_HeaderFile +#include "VISUPipeline.hxx" #include "VISU_PipeLine.hxx" +#include "VISU_UnstructuredGridPL.hxx" + -class VISU_MeshPL : public VISU_PipeLine{ +//---------------------------------------------------------------------------- +class VISU_PIPELINE_EXPORT VISU_MeshPL : public VISU_PipeLine, + public VISU_UnstructuredGridPL +{ +public: + vtkTypeMacro(VISU_MeshPL, VISU_PipeLine); + + //---------------------------------------------------------------------------- + static + VISU_MeshPL* + New(); + protected: + //---------------------------------------------------------------------------- VISU_MeshPL(); VISU_MeshPL(const VISU_MeshPL&); -public: - vtkTypeMacro(VISU_MeshPL,VISU_PipeLine); - static VISU_MeshPL* New(); - -public: - virtual void Build(); - virtual void Init(); + + virtual + void + OnCreateMapperHolder(); + + virtual + void + Build(); }; #endif