mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-15 17:42:14 +00:00
22 lines
419 B
C++
22 lines
419 B
C++
#ifndef ROTOPTIMIZEJOB_HPP
|
|
#define ROTOPTIMIZEJOB_HPP
|
|
|
|
#include "PlaterJob.hpp"
|
|
|
|
namespace Slic3r { namespace GUI {
|
|
|
|
class RotoptimizeJob : public PlaterJob
|
|
{
|
|
public:
|
|
RotoptimizeJob(std::shared_ptr<ProgressIndicator> pri, Plater *plater)
|
|
: PlaterJob{std::move(pri), plater}
|
|
{}
|
|
|
|
void process() override;
|
|
void finalize() override;
|
|
};
|
|
|
|
}} // namespace Slic3r::GUI
|
|
|
|
#endif // ROTOPTIMIZEJOB_HPP
|