mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-30 20:21:12 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			508 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			508 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef SLAIMPORTJOB_HPP
 | |
| #define SLAIMPORTJOB_HPP
 | |
| 
 | |
| #include "PlaterJob.hpp"
 | |
| 
 | |
| namespace Slic3r { namespace GUI {
 | |
| 
 | |
| class SLAImportJob : public PlaterJob {
 | |
|     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
 | 
