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
Macros
base.h File Reference

Basic LSST definitions. More...

#include <memory>

Go to the source code of this file.

Macros

#define LSST_WHITESPACE   /* White space to avoid swig converting vector<PTR(XX)> into vector<shared_ptr<XX>> */
 A shared pointer to an object. More...
 
#define PTR(...)   std::shared_ptr<__VA_ARGS__ LSST_WHITESPACE > LSST_WHITESPACE
 
#define CONST_PTR(...)   std::shared_ptr<const __VA_ARGS__ LSST_WHITESPACE > LSST_WHITESPACE
 A shared pointer to a const object. More...
 
#define LSST_EXPORT   __attribute__ ((visibility("default")))
 Make a symbol visible even if visiblity is hidden (e.g. More...
 
#define LSST_PRIVATE   __attribute__ ((visibility("hidden")))
 Make a symbol hidden even if default visiblity is public. More...
 

Detailed Description

Basic LSST definitions.

Definition in file base.h.

Macro Definition Documentation

◆ CONST_PTR

#define CONST_PTR (   ...)    std::shared_ptr<const __VA_ARGS__ LSST_WHITESPACE > LSST_WHITESPACE

A shared pointer to a const object.

See also
PTR

Definition at line 47 of file base.h.

◆ LSST_EXPORT

#define LSST_EXPORT   __attribute__ ((visibility("default")))

Make a symbol visible even if visiblity is hidden (e.g.

for pybind11 modules)

This implementation works for gcc and clang; it has not been tested for other compilers

Definition at line 54 of file base.h.

◆ LSST_PRIVATE

#define LSST_PRIVATE   __attribute__ ((visibility("hidden")))

Make a symbol hidden even if default visiblity is public.

This implementation works for gcc and clang; it has not been tested for other compilers.

This macro should be used for most utility code for pybind11 wrapping (at least non-template, non-inline code). It can also be used in non-pybind11 code to make a symbol private to a library without also forcing it to be private to a single source file.

Definition at line 66 of file base.h.

◆ LSST_WHITESPACE

#define LSST_WHITESPACE   /* White space to avoid swig converting vector<PTR(XX)> into vector<shared_ptr<XX>> */

A shared pointer to an object.

Note
Using this macro is preferable to the Ptr typedef in type T as no definition of T need be provided, a forward definition (class T;) is sufficient
See also
CONST_PTR

Definition at line 40 of file base.h.

◆ PTR

#define PTR (   ...)    std::shared_ptr<__VA_ARGS__ LSST_WHITESPACE > LSST_WHITESPACE

Definition at line 41 of file base.h.