Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

gnSetup.h

Go to the documentation of this file.
00001 
00002 // File:            gn/gnSetup.h
00003 // Purpose:         libGenome setup
00004 // Description:     Defines os/compiler specific constants, etc.
00005 //                  Included in gn/gnDefs.h.
00006 // Rev:             A
00007 // Author:          Aaron Darling 
00008 // Last Edited:     April 15, 2001, 10:34:50pm 
00009 // Modified by:     
00010 // Copyright:       (c) Aaron Darling 
00011 // Licenses:        
00012  
00014 #ifndef _gnSetup_h_
00015 #define _gnSetup_h_
00016 
00017 #include <stdlib.h>
00018 using namespace std;    //introduces namespace std
00019 
00020 #ifdef GN_GUI
00021 #include "wx/wx_cw_d.h"
00022 #endif
00023 
00024 #ifdef GNMAKINGDLL   // build the libgenome dll
00025 #define GNDLLEXPORT __declspec(dllexport)
00026 #define GNDLLEXPORT_DATA(type) __declspec(dllexport) type
00027 #elif defined(GNUSINGDLL)  
00028 // the project uses a libGenome as a dll
00029 #define GNDLLEXPORT __declspec(dllimport)
00030 #define GNDLLEXPORT_DATA(type) __declspec(dllimport) type
00031 #else   // static linking
00032 #define GNDLLEXPORT
00033 #define GNDLLEXPORT_DATA
00034 #endif
00035 
00036 #endif
00037         //_gnSetup_h_

Generated at Thu Apr 4 01:52:03 2002 for libGenome by doxygen1.2.8.1 written by Dimitri van Heesch, © 1997-2001