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

P1TetElement.h

Go to the documentation of this file.
00001 // Copyright (C) 2003 Johan Hoffman and Anders Logg.
00002 // Licensed under the GNU GPL Version 2.
00003 
00004 #ifndef __P1TET_ELEMENT_H
00005 #define __P1TET_ELEMENT_H
00006 
00007 #include <dolfin/FiniteElement.h>
00008 #include <dolfin/P1Tet.h>
00009 
00010 namespace dolfin {
00011   
00012   class P1TetElement : public FiniteElement {
00013   public:
00014 
00015          P1TetElement() : FiniteElement(trial, test) {}
00016          
00017   private:
00018 
00019          P1Tet trial;
00020          P1Tet test;
00021          
00022   };
00023   
00024 }
00025 
00026 #endif


Documentation automatically generated with Doxygen on 10 Sep 2004.