NCBI C++ ToolKit
gbproj_export.h
Go to the documentation of this file.

Go to the SVN repository for this file.

1 #ifndef OBJECTS_GBPROJ_EXPORT_H
2 #define OBJECTS_GBPROJ_EXPORT_H
3 
4 /*
5  * $Id:
6  * ===========================================================================
7  *
8  * PUBLIC DOMAIN NOTICE
9  * National Center for Biotechnology Information
10  *
11  * This software/database is a "United States Government Work" under the
12  * terms of the United States Copyright Act. It was written as part of
13  * the author's official duties as a United States Government employee and
14  * thus cannot be copyrighted. This software/database is freely available
15  * to the public for use. The National Library of Medicine and the U.S.
16  * Government have not placed any restriction on its use or reproduction.
17  *
18  * Although all reasonable efforts have been taken to ensure the accuracy
19  * and reliability of the software and data, the NLM and the U.S.
20  * Government do not and cannot warrant the performance or results that
21  * may be obtained by using this software or data. The NLM and the U.S.
22  * Government disclaim all warranties, express or implied, including
23  * warranties of performance, merchantability or fitness for any particular
24  * purpose.
25  *
26  * Please cite the author in any work or product based on this material.
27  *
28  * ===========================================================================
29  *
30  * Author: Liangshou Wu
31  *
32  */
33 
34 
35 /// @file gbproj_export.h
36 /// Defines to provide correct exporting from DLLs in Windows.
37 /// These are necessary to compile DLLs with Visual C++ - exports must be
38 /// explicitly labeled as such.
39 
40 
41 #include <common/ncbi_export.h>
42 
43 
44 /*
45  * -------------------------------------------------
46  * DLL clusters
47  */
48 
49 /*
50  * Definitions for TRACKMGRASN.DLL
51  */
52 #ifdef NCBI_TRACKMGRASN_EXPORTS
53 # define NCBI_TRACKMGR_EXPORTS
54 #endif
55 
56 
57 /* ------------------------------------------------- */
58 /*
59  * Individual Library Definitions
60  * Please keep alphabetized!
61  */
62 
63 /*
64  * Export specifier for library ideo
65  */
66 #ifdef NCBI_TRACKMGR_EXPORTS
67 # define NCBI_GBPROJ_EXPORT NCBI_DLL_EXPORT
68 #else
69 # define NCBI_GBPROJ_EXPORT NCBI_DLL_IMPORT
70 #endif
71 
72 
73 #endif // OBJECTS_GBPROJ_EXPORT_H
74 
Defines to provide correct exporting from DLLs in some configurations.
Modified on Fri Sep 20 14:57:27 2024 by modify_doxy.py rev. 669887