/* -*- C++ -*- * Copyright ©2004 Hugo Mills * * This software is distributed under the terms of the GNU GPL v3 * For more information on the GPL, see the file COPYING or * visit http://www.gnu.org/ * * This software is distributed without warranty */ #ifndef DISPLAY_OUTLINE_H #define DISPLAY_OUTLINE_H #include #include "magellan/mdisplay.h" #include "layer.h" class Display_Outline : public MDisplay { public: Display_Outline( Bitmap* bm, XfView* vp, XfMap* proj, XfOrbit* orb, XfSphere* sph, std::multiset* ls ) : MDisplay(bm, vp, proj, orb, sph), layers(ls) { } virtual ~Display_Outline() { } virtual void plot(void); private: std::multiset* layers; }; #endif