Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members

Template.h

Go to the documentation of this file.
00001 // Copyright (C) 2002 [Insert name]
00002 // Licensed under the GNU GPL Version 2.
00003 
00004 #ifndef __TEMPLATE_H
00005 #define __TEMPLATE_H
00006 
00007 #include <dolfin/PDE.h>
00008 
00009 namespace dolfin {
00010 
00011   class Template : public PDE {
00012   public:
00013          
00014          Template() : PDE(3) {}
00015          
00016          real lhs(ShapeFunction &u, ShapeFunction &v) {
00017                 return 1.0;
00018          }
00019          
00020          real rhs(ShapeFunction &v) {
00021                 return 1.0;
00022          }
00023          
00024   private:
00025          
00026   };
00027 
00028 }
00029   
00030 #endif
00031   


Documentation automatically generated with Doxygen on 10 Sep 2004.