LSSTApplications  19.0.0-1-g1faeb96,19.0.0-1-g8c57eb9+34,19.0.0-1-ga3b31f8+4,19.0.0-1-gad49e94,19.0.0-10-g3250e53,19.0.0-15-g7d47663+1,19.0.0-17-gde1f5b76+4,19.0.0-18-gfb21c91+3,19.0.0-2-g15ad1b6+3,19.0.0-2-g2ed0b45+1,19.0.0-2-g456d77f+4,19.0.0-2-g4aada73,19.0.0-2-g5e94dc7+1,19.0.0-2-g6e0b8f9,19.0.0-2-g822544a+3,19.0.0-2-gb013ac2+3,19.0.0-2-gd82b0d5+4,19.0.0-20-g12a598f+1,19.0.0-20-g3336a1e+4,19.0.0-22-gd98cb7f78,19.0.0-23-g2f46faf+1,19.0.0-23-g4cc2bcb+1,19.0.0-3-g57fcecc+3,19.0.0-3-g9629746+1,19.0.0-3-g99a058e,19.0.0-3-ga84a0ef,19.0.0-3-gbea416a+1,19.0.0-3-gc2296d9,19.0.0-3-gc70e9ed,19.0.0-3-gc851abf+4,19.0.0-4-gac56cce+23,19.0.0-4-gb666382+4,19.0.0-4-gc799371+4,19.0.0-5-g24a5ec6,19.0.0-54-g09f1fc0,19.0.0-56-g9719b63b,19.0.0-6-g4aaee92+4,19.0.0-6-gce3e386+4,19.0.0-8-g967c747,19.0.0-8-gb750100+3,w.2020.18
LSSTDataManagementBasePackage
Macros
base.h File Reference
#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 48 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 55 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 67 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 41 of file base.h.

◆ PTR

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

Definition at line 42 of file base.h.