Files
OrcaSlicer/src/common_func/common_func.hpp
2026-04-28 22:42:01 +02:00

38 lines
827 B
C++

#ifndef _common_func_hppp_
#define _common_func_hppp_
#include <iostream>
#define SLIC3R_APP_NAME "SnapmakerOrca-FullSpectrum"
#define SLIC3R_APP_KEY "Snapmaker_Orca"
#define SLIC3R_VERSION "01.10.01.70"
#define Snapmaker_VERSION "2.3.1"
#define FULLSPECTRUM_VERSION "0.9.9"
#define MIN_FIRM_VER "1.0.0"
#ifndef GIT_COMMIT_HASH
#define GIT_COMMIT_HASH "0000000" // 0000000 means uninitialized
#endif
#define SLIC3R_BUILD_ID "2.3.1"
// #define SLIC3R_RC_VERSION "01.10.01.50"
#define BBL_RELEASE_TO_PUBLIC 1
#define BBL_INTERNAL_TESTING 0
#define ORCA_CHECK_GCODE_PLACEHOLDERS 0
namespace common
{
std::string get_pc_name();
std::string get_flutter_version();
std::string get_profile_version();
std::string getMachineId();
std::string getLocalArea();
std::string getLanguage();
} // namespace common
#endif