/*
    C++ Mesh Generation Library
    Copyright (c) 2000echet <eric at bechet dot ca>

    This file is part of the C++ Mesh Generation Library.

    See the NOTICE & LICENSE files for conditions.
*/
//---------------------------------------------------------------------------
#ifndef ELEMENT_H
#define ELEMENT_H
//---------------------------------------------------------------------------


#include "mesh_const.h"

#include "entity.h"
#include "bipoint.h"
#include "topological_face.h"
#include "vertex.h"


/// abstract class element used to store the vertices of an element
template<int dim,class V=Vertex<dim> >
class Element : public Entity
{

public :
///
  typedef V Vertex_Type;
};

#endif // ELEMENT_H

 
