82e8ab60b3
- introdotti ObjUser.
61 lines
2.2 KiB
C++
61 lines
2.2 KiB
C++
//----------------------------------------------------------------------------
|
|
// EgalTech 2014-2015
|
|
//----------------------------------------------------------------------------
|
|
// File : NgeConst.h Data : 22.05.15 Versione : 1.6e3
|
|
// Contenuto : Costanti per file Nge.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 12.04.14 DS Creazione modulo.
|
|
// 28.05.14 DS 1.5.7 -> aggiunto aggetto Testo.
|
|
// 23.08.14 DS 1007 -> versione con 1 solo int e cambiato nome GDB in "EgtGeomDB".
|
|
// 21.01.15 DS 1009 -> Aggiunto ZMAP, cambiato Id di TEXT.
|
|
// 11.03.15 DS 1010 -> Aggiunto flag orientata e elenco facce a SurfTm.
|
|
// 22.05.15 DS 1011 -> Aggiunta possibilità estensione oggetti con IObjUser.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Costanti per file NGE
|
|
//----------------------------------------------------------------------------
|
|
// Nome GDB
|
|
const std::string NGE_GEOMDB = "EgtGeomDB" ;
|
|
// Versione
|
|
const int NGE_VER_1007 = 1007 ;
|
|
// 1007 : nuovo versioning con unico valore
|
|
const int NGE_VER_1008 = 1008 ;
|
|
// 1008 : aggiunge vtExtr e dThick a tutte le curve
|
|
const int NGE_VER_1009 = 1009 ;
|
|
// 1009 : aggiunto solido ZMAP e cambiato Id di TEXT
|
|
const int NGE_VER_1010 = 1010 ;
|
|
// 1010 : aggiunto flag orientata e elenco facce a SurfTm
|
|
const int NGE_VER_1011 = 1011 ;
|
|
// 1011 : aggiunta possibilità estensione oggetti con IObjUser (Keyword U)
|
|
const int NGE_VER_LAST = NGE_VER_1011 ;
|
|
// Indici KeyWord
|
|
const int NGE_START = 0 ;
|
|
const int NGE_END = 1 ;
|
|
const int NGE_MAT_DEF = 2 ;
|
|
const int NGE_MAT_LIB = 3 ;
|
|
const int NGE_A = 4 ;
|
|
const int NGE_G = 5 ;
|
|
const int NGE_P = 6 ;
|
|
const int NGE_U = 7 ;
|
|
const int NGE_A_GRP = 8 ;
|
|
const int NGE_X_CPY = 9 ;
|
|
const int NGE_G_VEC = 10 ;
|
|
const int NGE_G_PNT = 11 ;
|
|
const int NGE_G_FRM = 12 ;
|
|
const int NGE_C_LIN = 13 ;
|
|
const int NGE_C_ARC = 14 ;
|
|
const int NGE_C_BEZ = 15 ;
|
|
const int NGE_C_CMP = 16 ;
|
|
const int NGE_S_TRM = 17 ;
|
|
const int NGE_V_ZMP = 18 ;
|
|
const int NGE_E_TXT = 19 ;
|
|
const int NGE_LAST_ID = 19 ; // ultimo valore
|