2acfbafb48
- primo commit.
35 lines
871 B
C
35 lines
871 B
C
// stdafx.h : include file for standard system include files,
|
|
// or project specific include files that are used frequently, but
|
|
// are changed infrequently
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "/EgtDev/Include/EgtTargetVer.h"
|
|
|
|
#include <stdio.h>
|
|
#include <tchar.h>
|
|
#include <float.h>
|
|
#include <math.h>
|
|
|
|
// in Debug riconoscimento memory leakage
|
|
#ifdef _DEBUG
|
|
#define _CRTDBG_MAP_ALLOC
|
|
#include <stdlib.h>
|
|
#include <crtdbg.h>
|
|
#endif
|
|
|
|
// in Debug controllo iteratori
|
|
#ifdef _DEBUG
|
|
#define _SECURE_SCL 1
|
|
#else
|
|
#define _SECURE_SCL 0
|
|
#endif
|
|
|
|
#include "/EgtDev/Include/EgtLibVer.h"
|
|
|
|
#pragma comment(lib, EGTLIBDIR "EgtGeneral" EGTLIBVER ".lib")
|
|
#pragma comment(lib, EGTLIBDIR "EgtNumKernel" EGTLIBVER ".lib")
|
|
#pragma comment(lib, EGTLIBDIR "EgtGeomKernel" EGTLIBVER ".lib")
|
|
#pragma comment(lib, EGTLIBDIR "EgtExchange" EGTLIBVER ".lib")
|