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

HexFile.hpp « Utils « slic3r « src « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1201d23a4650dc20a3387a39e19c4826e77238ac (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
#ifndef slic3r_Hex_hpp_
#define slic3r_Hex_hpp_

#include <string>
#include <boost/filesystem/path.hpp>


namespace Slic3r {
namespace Utils {


struct HexFile
{
	enum DeviceKind {
		DEV_GENERIC,
		DEV_MK2,
		DEV_MK3,
		DEV_MM_CONTROL,
	};

	boost::filesystem::path path;
	DeviceKind device = DEV_GENERIC;
	std::string model_id;

	HexFile() {}
	HexFile(boost::filesystem::path path);
};


}
}

#endif