Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SLAImportJob.hpp « Jobs « GUI « slic3r « src - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cff6cc899b338ebe500720071e8be1c3ac9a2d13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef SLAIMPORTJOB_HPP
#define SLAIMPORTJOB_HPP

#include "Job.hpp"

namespace Slic3r { namespace GUI {

class Plater;

class SLAImportJob : public Job {    
    class priv;
    
    std::unique_ptr<priv> p;
    
public:
    SLAImportJob(std::shared_ptr<ProgressIndicator> pri, Plater *plater);
    ~SLAImportJob();

    void process() override;
    
    void reset();
    
protected:
    void prepare() override;
    
    void finalize() override;
};

}}     // namespace Slic3r::GUI

#endif // SLAIMPORTJOB_HPP