00001 // ------------------------------------------------------------------------- 00002 // REP.h - This header file contains the public data structure 00003 // definitions for the Recovery Equilibrium Patch 00004 // Technique (a smoothing class). 00005 // ------------------------------------------------------------------------- 00006 // 00007 // $Author: joaquim $ 00008 // $Revision: 1.1 $ 00009 // $Date: 1998/02/16 20:21:11 $ 00010 // $State: Exp $ 00011 // 00012 // ------------------------------------------------------------------------- 00013 00014 #ifndef _REP_H 00015 #define _REP_H 00016 00017 #include <stdio.h> 00018 #include "gbldefs.h" 00019 #include "smooth.h" 00020 00021 // ------------------------------------------------------------------------- 00022 // REP class: 00023 // 00024 class cSmoothREP : public cSmooth 00025 { 00026 protected: 00027 00028 public: 00029 cSmoothREP ( void ); 00030 ~cSmoothREP ( void ); 00031 00032 void SmoothTensor( sTensor * ); 00033 }; 00034 00035 #endif