LSSTApplications  19.0.0-16-gf391218+75207a5567,20.0.0-11-g973f35b+5f40f3b74f,20.0.0-18-g2b8c1f54+98f00cec1f,20.0.0-2-g103fe59+89abf75b1e,20.0.0-2-g1367e85+062b368476,20.0.0-2-g7f82c8f+0b34c2a098,20.0.0-2-g8dde007+012a460308,20.0.0-2-ga326454+0b34c2a098,20.0.0-2-ga51b5d4+6432c6fd8d,20.0.0-2-gde069b7+44dbdb3492,20.0.0-2-gfc62afb+062b368476,20.0.0-21-g0d0e83cbc+ce03d725a7,20.0.0-22-g54e2caa+4f6b04f9b5,20.0.0-25-g5eafb0f+117dba2638,20.0.0-29-g051ac7e+3416f82306,20.0.0-3-g5242d73+062b368476,20.0.0-3-ga63a54e+248839b751,20.0.0-31-g42917e2+deb446c958,20.0.0-4-g2909d54+37efb4748c,20.0.0-4-g35ce6d5+117dba2638,20.0.0-4-g45278ab+d529cf1a41,20.0.0-4-g4bc9b9f+867e64eac0,20.0.0-4-g66bcc37+117dba2638,20.0.0-4-ge17e5af+062b368476,20.0.0-4-gecfae73+509aca652e,20.0.0-4-gf910f65+37efb4748c,20.0.0-48-gb5944981+f3b9101d4b,20.0.0-5-g8f08a60+4fac22bdb7,20.0.0-5-ga885a99+c1363b8d99,20.0.0-5-gc738bc1+7b4a58de93,20.0.0-5-gfbfe500+d529cf1a41,20.0.0-6-gd222c45+88b21af515,20.0.0-7-g4c5b185+85184fddd4,20.0.0-7-gaa929c8+3416f82306,20.0.0-74-g0218c7a+3251b390b2,20.0.0-8-g5dd23de+e66d8374b0,20.0.0-8-ge712728+601a35ad67,20.0.0-9-g5051ac2+d529cf1a41,w.2020.49
LSSTDataManagementBasePackage
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
25 
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
42 
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