LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
LSSTDataManagementBasePackage
Public Member Functions | Private Types | List of all members
lsst::pex::logging::TmplPrinterList< T > Class Template Reference

#include <PropertyPrinter.h>

Inheritance diagram for lsst::pex::logging::TmplPrinterList< T >:
lsst::pex::logging::BaseTmplPrinterList< T > lsst::pex::logging::PrinterList

Public Member Functions

 TmplPrinterList (const lsst::daf::base::PropertySet &prop, const std::string &name)
 
virtual PrinterList::iterator begin () const
 
virtual PrinterList::iterator last () const
 
- Public Member Functions inherited from lsst::pex::logging::BaseTmplPrinterList< T >
 BaseTmplPrinterList (const lsst::daf::base::PropertySet &prop, const std::string &name)
 
virtual ~BaseTmplPrinterList ()
 
virtual size_t valueCount () const
 
- Public Member Functions inherited from lsst::pex::logging::PrinterList
virtual ~PrinterList ()
 

Private Types

typedef TmplPrinterIter< T > delegateIter
 

Additional Inherited Members

- Public Types inherited from lsst::pex::logging::PrinterList
typedef WrappedPrinterIter iterator
 
- Protected Attributes inherited from lsst::pex::logging::BaseTmplPrinterList< T >
std::vector< T > _list
 

Detailed Description

template<class T>
class lsst::pex::logging::TmplPrinterList< T >

Definition at line 269 of file PropertyPrinter.h.

Member Typedef Documentation

template<class T>
typedef TmplPrinterIter<T> lsst::pex::logging::TmplPrinterList< T >::delegateIter
private

Definition at line 278 of file PropertyPrinter.h.

Constructor & Destructor Documentation

template<class T>
lsst::pex::logging::TmplPrinterList< T >::TmplPrinterList ( const lsst::daf::base::PropertySet prop,
const std::string &  name 
)
inline

Definition at line 271 of file PropertyPrinter.h.

272  : BaseTmplPrinterList<T>(prop, name) { }
table::Key< std::string > name
Definition: ApCorrMap.cc:71

Member Function Documentation

template<class T >
PrinterList::iterator lsst::pex::logging::TmplPrinterList< T >::begin ( ) const
virtual

return a PrinterIter set at the first property value

Implements lsst::pex::logging::PrinterList.

Definition at line 282 of file PropertyPrinter.h.

282  {
283  PrinterIter *it = new delegateIter(BaseTmplPrinterList<T>::_list.begin(),
284  BaseTmplPrinterList<T>::_list.begin(),
285  BaseTmplPrinterList<T>::_list.end());
286  return PrinterList::iterator(boost::shared_ptr<PrinterIter>(it));
287 }
virtual PrinterList::iterator begin() const
template<class T >
PrinterList::iterator lsst::pex::logging::TmplPrinterList< T >::last ( ) const
virtual

return a PrinterIter set at the last property value

Implements lsst::pex::logging::PrinterList.

Definition at line 289 of file PropertyPrinter.h.

289  {
290  PrinterIter *it = new delegateIter(BaseTmplPrinterList<T>::_list.end()-1,
291  BaseTmplPrinterList<T>::_list.begin(),
292  BaseTmplPrinterList<T>::_list.end());
293  return PrinterList::iterator(boost::shared_ptr<PrinterIter>(it));
294 }
virtual PrinterList::iterator begin() const

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