Files
OrcaSlicer/src/libslic3r/CommonDefs.hpp
hemai 104cbb7b9b ENH: support E3D print parts display
Jira: [STUDIO-14908]
Change-Id: Ie8273eb6f74a3e7508f440d2092bb48f2e1dbb10
(cherry picked from commit a4218e991e6367e3f1ee3802e785802df2ad6d41)
2025-10-28 15:30:00 +08:00

22 lines
567 B
C++

#pragma once
// CommonDefs.hpp
// ---------------
// This header provides common definitions and enumerations shared across multiple libraries.
// It is intended for use in projects that require consistent type definitions, such as nozzle types.
// The contents of this file are designed to be reusable and maintainable for cross-library integration.
namespace Slic3r
{
// BBS
enum NozzleType
{
ntUndefine = 0,
ntHardenedSteel,
ntStainlessSteel,
ntTungstenCarbide,
ntBrass,
ntE3D,
ntCount
};
}