ROOT
6.06/09
Reference Guide
|
TCollectionProxyFactory Interface to collection proxy and streamer generator.
Proxy around an arbitrary container, which implements basic functionality and iteration. The purpose of this implementation is to shield any generated dictionary implementation from the underlying streamer/proxy implementation and only expose the creation functions.
In particular this is used to implement splitting and abstract element access of any container. Access to compiled code is necessary to implement the abstract iteration sequence and functionality like size(), clear(), resize(). resize() may be a void operation.
Definition at line 79 of file TCollectionProxyFactory.h.
Public Types | |
typedef TVirtualCollectionProxy | Proxy_t |
typedef const std::type_info & | Info_t |
Static Public Member Functions | |
static TVirtualCollectionProxy * | GenEmulatedProxy (const char *class_name, Bool_t silent) |
Generate emulated collection proxy for a given class. More... | |
static TClassStreamer * | GenEmulatedClassStreamer (const char *class_name, Bool_t silent) |
Generate emulated class streamer for a given collection class. More... | |
static TMemberStreamer * | GenEmulatedMemberStreamer (const char *class_name, Bool_t silent) |
Generate emulated member streamer for a given collection class. More... | |
static Proxy_t * | GenExplicitProxy (const ::ROOT::TCollectionProxyInfo &info, TClass *cl) |
Generate proxy from static functions. More... | |
template<class T > | |
static Proxy_t * | GenProxy (const T &arg, TClass *cl) |
Generate proxy from template. More... | |
static TGenCollectionStreamer * | GenExplicitStreamer (const ::ROOT::TCollectionProxyInfo &info, TClass *cl) |
Generate streamer from static functions. More... | |
static TClassStreamer * | GenExplicitClassStreamer (const ::ROOT::TCollectionProxyInfo &info, TClass *cl) |
Generate class streamer from static functions. More... | |
template<class T > | |
static TClassStreamer * | GenClassStreamer (const T &arg, TClass *cl) |
Generate class streamer from template. More... | |
static TMemberStreamer * | GenExplicitMemberStreamer (const ::ROOT::TCollectionProxyInfo &info, TClass *cl) |
Generate member streamer from static functions. More... | |
template<class T > | |
static TMemberStreamer * | GenMemberStreamer (const T &arg, TClass *cl) |
Generate member streamer from template. More... | |
#include <TCollectionProxyFactory.h>
typedef const std::type_info& TCollectionProxyFactory::Info_t |
Definition at line 86 of file TCollectionProxyFactory.h.
Definition at line 82 of file TCollectionProxyFactory.h.
|
inlinestatic |
Generate class streamer from template.
Definition at line 116 of file TCollectionProxyFactory.h.
|
static |
Generate emulated class streamer for a given collection class.
Definition at line 71 of file TCollectionProxyFactory.cxx.
Referenced by TStreamerInfo::GenEmulatedClassStreamer().
|
static |
Generate emulated member streamer for a given collection class.
Definition at line 81 of file TCollectionProxyFactory.cxx.
|
static |
Generate emulated collection proxy for a given class.
Definition at line 63 of file TCollectionProxyFactory.cxx.
Referenced by TStreamerInfo::GenEmulatedProxy().
|
static |
Generate class streamer from static functions.
Definition at line 105 of file TCollectionProxyFactory.cxx.
Referenced by GenClassStreamer(), and TStreamerInfo::GenExplicitClassStreamer().
|
static |
Generate member streamer from static functions.
Definition at line 114 of file TCollectionProxyFactory.cxx.
Referenced by GenMemberStreamer().
|
static |
Generate proxy from static functions.
Definition at line 90 of file TCollectionProxyFactory.cxx.
Referenced by TStreamerInfo::GenExplicitProxy(), and GenProxy().
|
static |
Generate streamer from static functions.
Definition at line 97 of file TCollectionProxyFactory.cxx.
Referenced by GenExplicitClassStreamer(), and GenExplicitMemberStreamer().
|
inlinestatic |
Generate member streamer from template.
Definition at line 125 of file TCollectionProxyFactory.h.
|
inlinestatic |
Generate proxy from template.
Definition at line 103 of file TCollectionProxyFactory.h.