Files
OrcaSlicer-bambulab/xs/src/slic3r/Utils/PrintHostFactory.hpp
Martin Loidl dd1fd66a47 Added possibility for upload to Duet
Further changes:
- Added new configuration option Host Type
- Added abstract base class for future printer hosts
- Moved location of upload dialog (also made it a little bit more configureable)
- added possibility to send file via postfield instead a new frame
2018-08-21 11:12:53 +02:00

25 lines
343 B
C++

#ifndef slic3r_PrintHostFactory_hpp_
#define slic3r_PrintHostFactory_hpp_
#include <string>
#include <wx/string.h>
namespace Slic3r {
class DynamicPrintConfig;
class PrintHost;
class PrintHostFactory
{
public:
PrintHostFactory() {};
~PrintHostFactory() {};
static PrintHost * get_print_host(DynamicPrintConfig *config);
};
}
#endif