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

EdgeRefData.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 __EDGE_REF_DATA_H
00005 #define __EDGE_REF_DATA_H
00006 
00007 namespace dolfin {
00008 
00009   class Cell;
00010 
00012   class EdgeRefData {
00013   public:
00014     
00016     void mark(Cell& cell);
00017 
00019     bool marked() const;
00020 
00022     bool marked(Cell& cell);
00023 
00025     void clear();
00026 
00027   private:
00028 
00030     List<Cell*> cells;
00031     
00032   };
00033 
00034 }
00035 
00036 #endif


Documentation automatically generated with Doxygen on 10 Sep 2004.