/* * View.hpp * * Created on: Dec 14, 2009 * Author: crueger */ #ifndef VIEW_HPP_ #define VIEW_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif /** * Base class for all Views * * TODO: is this really needed or helpfull at all? */ class View { public: View(); virtual ~View(); }; #endif /* VIEW_HPP_ */