mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-11-02 20:51:23 -07:00
Change UI job's process() method to be protected, as it should have been
Also add some comments to the interface of Job class
This commit is contained in:
parent
883f46662d
commit
6efea25478
5 changed files with 21 additions and 17 deletions
|
|
@ -48,14 +48,14 @@ class RotoptimizeJob : public PlaterJob
|
|||
protected:
|
||||
|
||||
void prepare() override;
|
||||
void process() override;
|
||||
|
||||
public:
|
||||
|
||||
RotoptimizeJob(std::shared_ptr<ProgressIndicator> pri, Plater *plater)
|
||||
: PlaterJob{std::move(pri), plater}
|
||||
{}
|
||||
|
||||
void process() override;
|
||||
|
||||
void finalize() override;
|
||||
|
||||
static constexpr size_t get_methods_count() { return std::size(Methods); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue