mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-30 20:21:12 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			No EOL
		
	
	
		
			548 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			No EOL
		
	
	
		
			548 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| %module{Slic3r::XS};
 | |
| 
 | |
| %{
 | |
| #include <xsinit.h>
 | |
| #include "slic3r/AppController.hpp"
 | |
| #include "libslic3r/Model.hpp"
 | |
| #include "libslic3r/Print.hpp"
 | |
| %}
 | |
| 
 | |
| %name{Slic3r::PrintController} class PrintController {
 | |
| 
 | |
|     PrintController(Print *print);
 | |
| 
 | |
|     void slice();
 | |
| };
 | |
| 
 | |
| %name{Slic3r::AppController} class AppController {
 | |
| 
 | |
|     AppController();
 | |
| 
 | |
|     PrintController *print_ctl();
 | |
|     void set_model(Model *model);
 | |
|     void set_print(Print *print);
 | |
|     void set_global_progress_indicator(unsigned gauge_id, unsigned statusbar_id);
 | |
| 
 | |
|     void arrange_model();
 | |
| }; | 
