f956fd20cc
- aggiunta scrittura binaria - tolte GetKey, Load e Save da interfaccia IGeoObj.
45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
//----------------------------------------------------------------------------
|
|
// EgalTech 2014-2014
|
|
//----------------------------------------------------------------------------
|
|
// File : NgeConst.h Data : 12.04.14 Versione : 1.5d3
|
|
// Contenuto : Costanti per file Nge.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 12.04.14 DS Creazione modulo.
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Costanti per file NGE
|
|
//----------------------------------------------------------------------------
|
|
// versione
|
|
const int NGE_MAJOR_VER = 1 ;
|
|
const int NGE_MINOR_VER = 5 ;
|
|
const int NGE_PATCH_VER = 4 ;
|
|
// nome GDB
|
|
const std::string NGE_GEOMDB = "GeomDB" ;
|
|
// indici KeyWord
|
|
const int NGE_START = 0 ;
|
|
const int NGE_END = 1 ;
|
|
const int NGE_MAT_DEF = 2 ;
|
|
const int NGE_A = 3 ;
|
|
const int NGE_G = 4 ;
|
|
const int NGE_P = 5 ;
|
|
const int NGE_A_GRP = 6 ;
|
|
const int NGE_X_CPY = 7 ;
|
|
const int NGE_G_VEC = 8 ;
|
|
const int NGE_G_PNT = 9 ;
|
|
const int NGE_G_FRM = 10 ;
|
|
const int NGE_C_LIN = 11 ;
|
|
const int NGE_C_ARC = 12 ;
|
|
const int NGE_C_BEZ = 13 ;
|
|
const int NGE_C_CMP = 14 ;
|
|
const int NGE_S_TRM = 15 ;
|
|
const int NGE_LAST_ID = 15 ; // ultimo valore
|