// // This file is part of the Marble Desktop Globe. // // This program is free software licensed under the GNU LGPL. You can // find a copy of this license in LICENSE.txt in the top directory of // the source code. // // Copyright 2007 Andrew Manson // #ifndef ROUTECONTAINER_H #define ROUTECONTAINER_H #include "AbstractLayerContainer.h" namespace Marble { /** * @brief holds a collection of Routes */ class RouteContainer : public virtual AbstractLayerContainer { public: virtual void draw( ClipPainter *painter, const QSize &canvasSize, ViewParams *viewParams ); using AbstractLayerContainer::draw; }; } #endif