Welcome to mirror list, hosted at ThFree Co, Russian Federation.

OctoPrint.hpp « Utils « slic3r « src « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eca3baa63a385fb338893d133e093b9b62496227 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef slic3r_OctoPrint_hpp_
#define slic3r_OctoPrint_hpp_

#include <string>

// #include "Http.hpp"    // XXX: ?

namespace Slic3r {


class DynamicPrintConfig;
class Http;

class OctoPrint
{
public:
	OctoPrint(DynamicPrintConfig *config);

	std::string test() const;
	// XXX: style
	void send_gcode(int windowId, int completeEvt, int errorEvt, const std::string &filename, bool print = false) const;
private:
	std::string host;
	std::string apikey;
	std::string cafile;

	void set_auth(Http &http) const;
	std::string make_url(const std::string &path) const;
	static std::string format_error(std::string error, unsigned status);
};


}

#endif