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