mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-06-27 16:22:24 +02:00
18 lines
279 B
C++
18 lines
279 B
C++
#ifndef slic3r_GUI_hpp_
|
|
#define slic3r_GUI_hpp_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace Slic3r { namespace GUI {
|
|
|
|
void disable_screensaver();
|
|
void enable_screensaver();
|
|
std::vector<std::string> scan_serial_ports();
|
|
bool debugged();
|
|
void break_to_debugger();
|
|
|
|
} }
|
|
|
|
#endif
|