LSST Applications  21.0.0-1-g8760c09+3ec9fa6d59,21.0.0-1-ga51b5d4+1ae1d287e8,21.0.0-14-g8332f57+53eed6efa3,21.0.0-16-g26cb9d6+200c335b02,21.0.0-16-g4bab731+7b753826ce,21.0.0-16-gf8f8bd3+485e975e6b,21.0.0-17-g535a0ce+caa2b9ee35,21.0.0-19-g1f131b1+29afaafaac,21.0.0-2-g103fe59+1a3971b589,21.0.0-2-g45278ab+3ec9fa6d59,21.0.0-2-g5242d73+0be025d221,21.0.0-2-g7f82c8f+6d5aba68d9,21.0.0-2-ga326454+6d5aba68d9,21.0.0-2-gde069b7+135055f2fa,21.0.0-2-gecfae73+f2022f71e2,21.0.0-2-gfc62afb+0be025d221,21.0.0-21-gec9c878+73f7dbf5d1,21.0.0-22-g8939e615+6101bd4b5e,21.0.0-3-g357aad2+66d02658a4,21.0.0-3-g4a4ce7f+0be025d221,21.0.0-3-g4be5c26+0be025d221,21.0.0-3-gd7ab7aa+a13d88a6a5,21.0.0-3-ge02ed75+caa2b9ee35,21.0.0-30-gf21da11f8+958f744973,21.0.0-4-g591bb35+caa2b9ee35,21.0.0-4-g65b4814+29afaafaac,21.0.0-4-g7dab645+dd55007106,21.0.0-4-ge8a399c+3c33e53e4b,21.0.0-5-g8c1d971+75b22be884,21.0.0-5-gcb07a25+7075ac2890,21.0.0-5-gcc89fd6+a13d88a6a5,21.0.0-5-gd00fb1e+3ed68df9f8,21.0.0-6-gc675373+0be025d221,21.0.0-7-gdf92d54+3ec9fa6d59,21.0.0-77-gb560965c+1db212ba20,21.0.0-8-g5674e7b+aee49eae85,21.0.0-9-gc2127a9+f3c7279034,master-gac4afde19b+caa2b9ee35,w.2021.18
LSST Data Management Base Package
base.h
Go to the documentation of this file.
1 /*
2  * LSST Data Management System
3  * Copyright 2008, 2009, 2010 LSST Corporation.
4  *
5  * This product includes software developed by the
6  * LSST Project (http://www.lsst.org/).
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the LSST License Statement and
19  * the GNU General Public License along with this program. If not,
20  * see <http://www.lsstcorp.org/LegalNotices/>.
21  */
22 
23 #if !defined(LSST_BASE_BASE_H)
24 #define LSST_BASE_BASE_H 1
30 #include <memory>
31 
40 #define LSST_WHITESPACE /* White space to avoid swig converting vector<PTR(XX)> into vector<shared_ptr<XX>> */
41 #define PTR(...) std::shared_ptr<__VA_ARGS__ LSST_WHITESPACE > LSST_WHITESPACE
47 #define CONST_PTR(...) std::shared_ptr<const __VA_ARGS__ LSST_WHITESPACE > LSST_WHITESPACE
48 
54 # define LSST_EXPORT __attribute__ ((visibility("default")))
55 
66 # define LSST_PRIVATE __attribute__ ((visibility("hidden")))
67 
68 #endif