mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-04-06 00:32:05 +02:00
Jira: [STUDIO-14908] Change-Id: Ie8273eb6f74a3e7508f440d2092bb48f2e1dbb10 (cherry picked from commit a4218e991e6367e3f1ee3802e785802df2ad6d41)
22 lines
567 B
C++
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
|
|
};
|
|
} |