ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/outil/src/hypergraphlib_platform.h
Revision: 1019
Committed: Tue Jun 4 21:16:50 2019 UTC (6 years ago) by francois
Content type: text/plain
File size: 482 byte(s)
Log Message:
restructuration de magic
outil est sorti de lib pour pouvoir etre utiliser en dehors de lib
template est merge avec outil
poly_occ et un sous projet de magic qui utilise le nouveau outil

File Contents

# User Rev Content
1 francois 283 #ifndef HypergraphLib_PlatformH
2     #define HypergraphLib_PlatformH
3 francois 102
4 francois 283 //----------------------------------------------------------------------------
5     // Microsoft Windows 2000/XP platform
6     //----------------------------------------------------------------------------
7    
8     #if defined(__BORLANDC__)
9    
10     #if defined(BUILT_DLL_OUTIL)
11     #define HYPERGRAPHLIB_ITEM __declspec(dllexport)
12     #else
13     #define HYPERGRAPHLIB_ITEM __declspec(dllimport)
14     #endif
15    
16     #else
17    
18     #define HYPERGRAPHLIB_ITEM
19    
20     #endif
21    
22    
23    
24     #endif