Site Created By: libMesh Developers
Last modified: February 05 2013 19:54:47 UTC
Hosted By:
00001 #ifndef MESHFUNCTIONSOLUTIONTRANSFER_H 00002 #define MESHFUNCTIONSOLUTIONTRANSFER_H 00003 00004 #include "libmesh/solution_transfer.h" 00005 00006 #include <string> 00007 00008 namespace libMesh { 00009 00015 class MeshFunctionSolutionTransfer : public SolutionTransfer 00016 { 00017 public: 00018 MeshFunctionSolutionTransfer(); 00019 virtual ~MeshFunctionSolutionTransfer(); 00020 00024 virtual void transfer(const Variable & from_var, const Variable & to_var); 00025 }; 00026 00027 } // namespace libMesh 00028 00029 #endif