/* * MeshAdaptor.hpp * * Created on: Mar 29, 2012 * Author: heber */ #ifndef MESHADAPTOR_HPP_ #define MESHADAPTOR_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include "Filling/NodeTypes.hpp" class MeshAdaptor : public Mesh { public: typedef boost::function function_t; MeshAdaptor(function_t &_func) { nodes = _func(); } virtual ~MeshAdaptor() {} }; #endif /* MESHADAPTOR_HPP_ */