#pragma once #include "map_shape.hpp" #include "shape_view_params.hpp" #include "../geometry/spline.hpp" namespace df { class LineShape : public MapShape { public: LineShape(m2::SharedSpline const & spline, LineViewParams const & params); virtual void Draw(dp::RefPointer batcher, dp::RefPointer textures) const; private: LineViewParams m_params; m2::SharedSpline m_spline; }; } // namespace df