00001 // This file is part of ff3d - http://www.freefem.org/ff3d 00002 // Copyright (C) 2001, 2002, 2003 Stéphane Del Pino 00003 00004 // This program is free software; you can redistribute it and/or modify 00005 // it under the terms of the GNU General Public License as published by 00006 // the Free Software Foundation; either version 2, or (at your option) 00007 // any later version. 00008 00009 // This program is distributed in the hope that it will be useful, 00010 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 // GNU General Public License for more details. 00013 00014 // You should have received a copy of the GNU General Public License 00015 // along with this program; if not, write to the Free Software Foundation, 00016 // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00017 00018 // $Id: VTKDriver.hpp,v 1.7 2006/08/27 21:31:32 delpinux Exp $ 00019 00020 #ifndef VTKDRIVER_HPP 00021 #define VTKDRIVER_HPP 00022 00023 #include <Mesh.hpp> 00024 #include <ScalarFunctionBase.hpp> 00025 00026 #include <ReferenceCounting.hpp> 00027 00028 #include <config.h> 00029 00030 class vtkDoubleArray; 00031 00040 class VTKDriver 00041 { 00042 private: 00052 vtkDoubleArray* 00053 __getValues(const Mesh& m, 00054 ConstReferenceCounting<ScalarFunctionBase> u); 00055 00056 template <typename MeshType> 00057 void __plot(const MeshType& m, 00058 ConstReferenceCounting<ScalarFunctionBase> u); 00059 00063 template <typename MeshType> 00064 struct Traits {}; 00065 public: 00066 00067 #ifdef HAVE_GUI_LIBS 00068 void plot(const Mesh& mesh, 00069 ConstReferenceCounting<ScalarFunctionBase> pU = 0); 00070 #else // HAVE_GUI_LIBS 00071 void plot(const Mesh& mesh, 00072 ConstReferenceCounting<ScalarFunctionBase> pU = 0) 00073 { 00074 fferr(0) << "Warning: cannot call 'plot' function, GUI was not compiled!\n"; 00075 } 00076 #endif // HAVE_GUI_LIBS 00077 00078 VTKDriver() 00079 { 00080 ; 00081 } 00082 00083 ~VTKDriver() 00084 { 00085 ; 00086 } 00087 }; 00088 00089 #endif // VTKDRIVER_HPP
1.5.6