Files
OrcaSlicer-bambulab/src/slic3r/Utils/HexFile.hpp
T

35 lines
412 B
C++
Raw Normal View History

#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,
2019-03-27 16:49:44 +01:00
DEV_CW1,
};
boost::filesystem::path path;
2018-07-27 11:55:11 +02:00
DeviceKind device = DEV_GENERIC;
std::string model_id;
2018-07-27 11:55:11 +02:00
HexFile() {}
HexFile(boost::filesystem::path path);
};
}
}
#endif