00001 // Copyright (C) 2009-2011 OPEN CASCADE 00002 // 00003 // This library is free software; you can redistribute it and/or 00004 // modify it under the terms of the GNU Lesser General Public 00005 // License as published by the Free Software Foundation; either 00006 // version 2.1 of the License. 00007 // 00008 // This library is distributed in the hope that it will be useful, 00009 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00010 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00011 // Lesser General Public License for more details. 00012 // 00013 // You should have received a copy of the GNU Lesser General Public 00014 // License along with this library; if not, write to the Free Software 00015 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00016 // 00017 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com 00018 // 00019 00020 // File : InterpolationCC.hxx 00021 // Created : Fri Aug 14 11:33:17 2009 00022 // Author : Edward AGAPOV (eap) 00023 // 00024 #ifndef __InterpolationCC_HXX__ 00025 #define __InterpolationCC_HXX__ 00026 00027 #include "Interpolation.hxx" 00028 00029 namespace INTERP_KERNEL 00030 { 00034 class InterpolationCC : public Interpolation<InterpolationCC> 00035 { 00036 // static const int SPACEDIM=MyMeshType::MY_SPACEDIM; 00037 // static const int MESHDIM=MyMeshType::MY_MESHDIM; 00038 // typedef typename MyMeshType::MyConnType ConnType; 00039 // static const NumberingPolicy numPol=MyMeshType::My_numPol; 00040 public: 00041 InterpolationCC(); 00042 //InterpolationCC(const InterpolationOptions& io); 00043 template<class MyMeshType, class MatrixType> 00044 int interpolateMeshes(const MyMeshType& srcMesh, const MyMeshType& targetMesh, MatrixType& result, const char *method); 00045 00046 private: 00047 }; 00048 } 00049 00050 00051 #endif