00001 #ifndef VIENNAGRID_TOPOLOGY_POINT_HPP 00002 #define VIENNAGRID_TOPOLOGY_POINT_HPP 00003 00004 /* ======================================================================= 00005 Copyright (c) 2011, Institute for Microelectronics, 00006 Institute for Analysis and Scientific Computing, 00007 TU Wien. 00008 00009 ----------------- 00010 ViennaGrid - The Vienna Grid Library 00011 ----------------- 00012 00013 Authors: Karl Rupp rupp@iue.tuwien.ac.at 00014 Josef Weinbub weinbub@iue.tuwien.ac.at 00015 00016 (A list of additional contributors can be found in the PDF manual) 00017 00018 License: MIT (X11), see file LICENSE in the base directory 00019 ======================================================================= */ 00020 00021 #include "viennagrid/forwards.h" 00022 00027 namespace viennagrid 00028 { 00029 00031 struct point_tag 00032 { 00033 enum { dim = 0 }; 00034 static std::string name() { return "Point"; } 00035 }; 00036 00037 //no need to have a separate subelements specialization here -> covered by default case 00038 00039 } 00040 00041 #endif 00042