/* -*- C++ -*- * Copyright ©2008 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 */ #include "magellan/content.h" #include #include #include #include "magellan/options.h" #include "magellan/vectors.h" #include "content_outline_rawcontourset.h" class Content_Outline : public Content { public: Content_Outline(const std::string& filename); virtual ~Content_Outline(); virtual void plot(Output*, XfView*, XfMap*, XfOrbit*, XfSphere*); static Content* parse( ConfigLexer* lex, const std::string& type, const std::string& subtype = "" ); private: RawContourSet_Inline data; };