#ifndef WIRE_PLANNER_H #define WIRE_PLANNER_H #include #include #include namespace qucs_s { namespace wire { class Planner { public: using RouterFunc = std::function(QPoint, QPoint)>; enum class PlanType { TwoStepXY, TwoStepYX, ThreeStepXY, ThreeStepYX }; Planner(); static std::vector plan(PlanType type, const QPoint from, const QPoint to); std::vector plan(const QPoint from, const QPoint to) const; void next(); private: std::map::const_iterator current; }; } // namespace wire } // namespace qucs_s #endif