/* * Mesh.hpp * * Created on: Jan 19, 2012 * Author: heber */ #ifndef MESH_HPP_ #define MESH_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Filling/NodeTypes.hpp" class Mesh { public: Mesh(); Mesh(const Mesh &mesh); virtual ~Mesh(); const NodeSet &getNodes() const; protected: NodeSet nodes; }; #endif /* MESH_HPP_ */