LSST Applications g0265f82a02+d6b5cd48b5,g02d81e74bb+a41d3748ce,g1470d8bcf6+6be6c9203b,g2079a07aa2+14824f138e,g212a7c68fe+a4f2ea4efa,g2305ad1205+72971fe858,g295015adf3+ab2c85acae,g2bbee38e9b+d6b5cd48b5,g337abbeb29+d6b5cd48b5,g3ddfee87b4+31b3a28dff,g487adcacf7+082e807817,g50ff169b8f+5929b3527e,g52b1c1532d+a6fc98d2e7,g591dd9f2cf+b2918d57ae,g5a732f18d5+66d966b544,g64a986408d+a41d3748ce,g858d7b2824+a41d3748ce,g8a8a8dda67+a6fc98d2e7,g99cad8db69+7fe4acdf18,g9ddcbc5298+d4bad12328,ga1e77700b3+246acaaf9c,ga8c6da7877+84af8b3ff8,gb0e22166c9+3863383f4c,gb6a65358fc+d6b5cd48b5,gba4ed39666+9664299f35,gbb8dafda3b+d8d527deb2,gc07e1c2157+b2dbe6b631,gc120e1dc64+61440b2abb,gc28159a63d+d6b5cd48b5,gcf0d15dbbd+31b3a28dff,gdaeeff99f8+a38ce5ea23,ge6526c86ff+39927bb362,ge79ae78c31+d6b5cd48b5,gee10cc3b42+a6fc98d2e7,gf1cff7945b+a41d3748ce,v24.1.5.rc1
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
lsst::afw::table::io::CatalogVector Class Reference

A vector of catalogs used by Persistable. More...

#include <CatalogVector.h>

Inheritance diagram for lsst::afw::table::io::CatalogVector:
std::vector< BaseCatalog >

Public Member Functions

BaseCatalog push_back (BaseCatalog ... args)
 
BaseCatalog crbegin (BaseCatalog ... args)
 
BaseCatalog erase (BaseCatalog ... args)
 
BaseCatalog data (BaseCatalog ... args)
 
BaseCatalog insert (BaseCatalog ... args)
 
BaseCatalog pop_back (BaseCatalog ... args)
 
BaseCatalog shrink_to_fit (BaseCatalog ... args)
 
BaseCatalog back (BaseCatalog ... args)
 
BaseCatalog end (BaseCatalog ... args)
 
BaseCatalog resize (BaseCatalog ... args)
 
BaseCatalog emplace_back (BaseCatalog ... args)
 
BaseCatalog size (BaseCatalog ... args)
 
BaseCatalog cbegin (BaseCatalog ... args)
 
BaseCatalog front (BaseCatalog ... args)
 
BaseCatalog rbegin (BaseCatalog ... args)
 
BaseCatalog crend (BaseCatalog ... args)
 
BaseCatalog assign (BaseCatalog ... args)
 
BaseCatalog reserve (BaseCatalog ... args)
 
BaseCatalog capacity (BaseCatalog ... args)
 
BaseCatalog empty (BaseCatalog ... args)
 
BaseCatalog cend (BaseCatalog ... args)
 
BaseCatalog swap (BaseCatalog ... args)
 
BaseCatalog max_size (BaseCatalog ... args)
 
BaseCatalog rend (BaseCatalog ... args)
 
BaseCatalog get_allocator (BaseCatalog ... args)
 
BaseCatalog clear (BaseCatalog ... args)
 
BaseCatalog at (BaseCatalog ... args)
 
BaseCatalog emplace (BaseCatalog ... args)
 
BaseCatalog operator[] (BaseCatalog ... args)
 
BaseCatalog begin (BaseCatalog ... args)
 

Public Attributes

BaseCatalog elements
 STL member.
 

Detailed Description

A vector of catalogs used by Persistable.

This should really be thought of as just a typedef, but we can't forward-declare a typedef to a template class, so we use a trivial subclass instead. That may seem like a dirty hack, but it has a huge benefit in keeping compilation times down: it keeps us from needing to include Catalog.h in Persistable.h, which otherwise would pull all of the afw::table headers into the header of any class that wanted to make use of a Persistable subclass.

CatalogVector is also used in such limited circumstances that we don't really have to worry about the fact that std::vector doesn't have a virtual destructor and that we only have default and copy constructors for CatalogVector.

Definition at line 29 of file CatalogVector.h.

Member Data Documentation

◆ elements

BaseCatalog std::vector< BaseCatalog >::elements
inherited

STL member.


The documentation for this class was generated from the following file: