mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-31 04:31:15 -06:00 
			
		
		
		
	Merge branch 'dev_native' of https://github.com/prusa3d/Slic3r into dev_native
This commit is contained in:
		
						commit
						61f7849fce
					
				
					 1 changed files with 4 additions and 2 deletions
				
			
		|  | @ -15,14 +15,16 @@ | |||
| #include <stdexcept> | ||||
| 
 | ||||
| #include <boost/format.hpp> | ||||
| #include <boost/filesystem/path.hpp> | ||||
| #include <boost/nowide/cstdio.hpp> | ||||
| 
 | ||||
| namespace Slic3r { | ||||
| 
 | ||||
| BackgroundSlicingProcess::BackgroundSlicingProcess() | ||||
| { | ||||
| 	m_temp_output_path = wxStandardPaths::Get().GetTempDir().utf8_str().data(); | ||||
| 	m_temp_output_path += (boost::format(".%1%.gcode") % get_current_pid()).str(); | ||||
|     boost::filesystem::path temp_path(wxStandardPaths::Get().GetTempDir().utf8_str().data()); | ||||
|     temp_path /= (boost::format(".%1%.gcode") % get_current_pid()).str(); | ||||
| 	m_temp_output_path = temp_path.string(); | ||||
| } | ||||
| 
 | ||||
| BackgroundSlicingProcess::~BackgroundSlicingProcess()  | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Enrico Turri
						Enrico Turri