![]() |
00001 // Copyright (C) 2003 Johan Hoffman and Anders Logg. 00002 // Licensed under the GNU GPL Version 2. 00003 00004 #ifndef __CELL_REF_DATA_H 00005 #define __CELL_REF_DATA_H 00006 00007 #include <dolfin/Cell.h> 00008 00009 namespace dolfin { 00010 00012 class CellRefData { 00013 public: 00014 00016 CellRefData() { 00017 marker = Cell::marked_for_no_ref; 00018 status = Cell::unref; 00019 } 00020 00022 Cell::Marker marker; 00023 00024 // The status of the cell 00025 Cell::Status status; 00026 00027 }; 00028 00029 } 00030 00031 #endif
Documentation automatically generated with Doxygen on 10 Sep 2004.