/*
    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 MESH_H
#define MESH_H
//---------------------------------------------------------------------------




#include "mesh_const.h"


/// abstract class mesh. To implement (not used now)
class Mesh
{
};


#endif // MESH_H

 
