39 lines
1.3 KiB
C++
39 lines
1.3 KiB
C++
//----------------------------------------------------------------------------
|
|
// EgalTech 2015-2015
|
|
//----------------------------------------------------------------------------
|
|
// File : MachiningConst.h Data : 18.06.15 Versione : 1.6f3
|
|
// Contenuto : Costanti delle lavorazioni.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 18.06.15 DS Creazione modulo.
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "/EgtDev/Include/EMkMachiningConst.h"
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Chiave per elenco identificativi di selezione
|
|
static std::string KEY_IDS = "IDS" ;
|
|
// Sottogruppi delle lavorazioni
|
|
static std::string MCH_AUX = "AUX" ;
|
|
static std::string MCH_PV = "PV" ;
|
|
static std::string MCH_CL = "CL" ;
|
|
static std::string MCH_PATH = "P" ;
|
|
// Nomi di entità speciali
|
|
static std::string MCH_RISE = "RISE" ;
|
|
// Nomi di entità di preview
|
|
static std::string MCH_PV_CUT = "CUT" ;
|
|
static std::string MCH_PV_RCUT = "RCUT" ;
|
|
static std::string MCH_PV_PRE_CUT = "PRC" ;
|
|
static std::string MCH_PV_POST_CUT = "POC" ;
|
|
// Chiave info con DeltaT lama in Preview
|
|
static std::string MCH_PV_KEY_DT = "DT" ;
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Feed equivalente a massima
|
|
const double MAX_FEED = 100000 ;
|