6e58d72afc
- aggiornamenti.
25 lines
999 B
C
25 lines
999 B
C
//----------------------------------------------------------------------------
|
|
// EgalTech 2015-2015
|
|
//----------------------------------------------------------------------------
|
|
// File : EmkOperationConst.h Data : 12.10.15 Versione : 1.6j2
|
|
// Contenuto : Costanti delle operazioni.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 12.10.15 DS Creazione modulo.
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
//------------------------ Costanti per tipo Operazioni -----------------------
|
|
const int OPER_GEN = 0x100 ;
|
|
const int OPER_MACH = 0x200 ;
|
|
enum OperType { OPER_NULL = 0, // nulla
|
|
OPER_DISP = OPER_GEN + 0, // disposizione (256)
|
|
OPER_DRILLING = OPER_MACH + 0, // foratura (512)
|
|
OPER_SAWING = OPER_MACH + 1, // taglio di lama (513)
|
|
OPER_MILLING = OPER_MACH + 2} ; // fresatura (514)
|
|
|