Jpp
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Classes | Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | Static Protected Attributes | List of all members
JSUPPORT::JAutoTreeWriter< JKey_t > Class Template Reference

Auxiliary class to copy input data to corresponding TTree. More...

#include <JAutoTreeWriter.hh>

Inheritance diagram for JSUPPORT::JAutoTreeWriter< JKey_t >:
JTOOLS::JAutoMap< JKey_t, JValue_t > JROOT::JRootOutputFile std::map< JKey_t, JValue_t > JROOT::JRootFile JLANG::JAccessible JLANG::JStorage< JClass_t, JMemory_t > JLANG::JThrow< JAccessible > JLANG::JPointer< JClass_t > JLANG::JAbstractPointer< JClass_t > JLANG::JEquals< JAbstractPointer< JClass_t > >

Classes

struct  JElement_t
 Auxiliary class for element insertion. More...
 

Public Types

typedef JAutoMap< JKey_t,
JTreeCopyWriterInterface * >
::map_type 
map_type
 
typedef JAutoMap< JKey_t,
JTreeCopyWriterInterface * >
::value_type 
value_type
 
typedef map_type::const_iterator const_iterator
 
typedef map_type::iterator iterator
 
typedef
map_type::const_reverse_iterator 
const_reverse_iterator
 
typedef map_type::reverse_iterator reverse_iterator
 
typedef JPointer< JClass_t > pointer_type
 
typedef JMemory_t< JClass_t > memory_type
 

Public Member Functions

 JAutoTreeWriter ()
 Default constrtuctor. More...
 
template<class T >
 JAutoTreeWriter (JType< T > type)
 Constructor. More...
 
template<class T >
void insert ()
 Insert (list of) data type(s). More...
 
virtual void open (const char *file_name)
 Open file. More...
 
virtual void close ()
 Close file. More...
 
template<>
int getKey (JLANG::JType< T > type)
 
template<>
int getKey (JLANG::JType< T > type)
 
template<class T , class JElement_t >
void insert (const JAutomate< JElement_t > &automate)
 Insert (list of) data type(s). More...
 
TFile * getFile () const
 Get file. More...
 
virtual bool is_open () const
 Check is file is open. More...
 
virtual void reset ()
 Reset pointer. More...
 
template<class T >
void reset (const JPointer< T > &pointer)
 Reset pointer. More...
 
void reset (JClass_t *p)
 Reset pointer. More...
 
void recreate ()
 Recreate object in memory. More...
 
void create ()
 Create object in memory. More...
 
void create (const unsigned int size)
 Create array of objects in memory. More...
 
virtual JClass_t * get () const
 Get pointer. More...
 
virtual void set (JClass_t *p)
 Set pointer. More...
 
template<class T >
void set (const JPointer< T > &pointer)
 Set pointer. More...
 
JClass_t *const & getReference () const
 Get rereference to internal pointer. More...
 
JClass_t *& getReference ()
 Get rereference to internal pointer. More...
 
virtual bool equals (const JAbstractPointer &object) const
 Equals. More...
 
bool is_valid () const
 Check validity of pointer. More...
 
JClass_t * operator-> () const
 Smart pointer operator. More...
 
 operator JClass_t * () const
 Type conversion operator. More...
 

Static Public Member Functions

template<class T >
static JKey_t getKey (JType< T > type)
 Get key. More...
 
template<class T >
static value_type getAutoElement (JType< T > type)
 Creation of a map element for given data type. More...
 
static void Throw (const bool option)
 Enable/disable throw option. More...
 
static int Throw (const JException &error, const int value=-1)
 Throw exception or return error. More...
 

Protected Member Functions

template<class T , class JElement_t >
void insert (JType< T > type, const JAutomate< JElement_t > &automate)
 Insertion of single data type. More...
 
template<class JHead_t , class JTail_t , class JElement_t >
void insert (JType< JTypeList< JHead_t, JTail_t > > typelist, const JAutomate< JElement_t > &automate)
 Recursive insertion of data types. More...
 
template<class JElement_t >
void insert (JType< JNullType > type, const JAutomate< JElement_t > &automate)
 Template specialisation to terminate insertion of data types. More...
 
void release ()
 Release memory. More...
 

Protected Attributes

JClass_t * __p
 pointer to object More...
 

Static Protected Attributes

static bool do_throw
 throw option More...
 

Detailed Description

template<class JKey_t>
class JSUPPORT::JAutoTreeWriter< JKey_t >

Auxiliary class to copy input data to corresponding TTree.

This class derives from JROOT::JRootOutputFile. It re-implements the methods open and close of the underlying JLANG::JAccessible class so that each TTree is properly attached to and detached from the corresponding TDirectory, respectively.

Definition at line 31 of file JAutoTreeWriter.hh.

Member Typedef Documentation

template<class JKey_t>
typedef JAutoMap<JKey_t, JTreeCopyWriterInterface*>::map_type JSUPPORT::JAutoTreeWriter< JKey_t >::map_type

Definition at line 37 of file JAutoTreeWriter.hh.

template<class JKey_t>
typedef JAutoMap<JKey_t, JTreeCopyWriterInterface*>::value_type JSUPPORT::JAutoTreeWriter< JKey_t >::value_type

Definition at line 38 of file JAutoTreeWriter.hh.

template<class JKey_t>
typedef map_type::const_iterator JSUPPORT::JAutoTreeWriter< JKey_t >::const_iterator

Definition at line 40 of file JAutoTreeWriter.hh.

template<class JKey_t>
typedef map_type::iterator JSUPPORT::JAutoTreeWriter< JKey_t >::iterator

Definition at line 41 of file JAutoTreeWriter.hh.

template<class JKey_t>
typedef map_type::const_reverse_iterator JSUPPORT::JAutoTreeWriter< JKey_t >::const_reverse_iterator

Definition at line 42 of file JAutoTreeWriter.hh.

template<class JKey_t>
typedef map_type::reverse_iterator JSUPPORT::JAutoTreeWriter< JKey_t >::reverse_iterator

Definition at line 43 of file JAutoTreeWriter.hh.

template<class JClass_t, template< class > class JMemory_t = JNew>
typedef JPointer<JClass_t> JLANG::JStorage< JClass_t, JMemory_t >::pointer_type
inherited

Definition at line 32 of file JStorage.hh.

template<class JClass_t, template< class > class JMemory_t = JNew>
typedef JMemory_t<JClass_t> JLANG::JStorage< JClass_t, JMemory_t >::memory_type
inherited

Definition at line 33 of file JStorage.hh.

Constructor & Destructor Documentation

template<class JKey_t>
JSUPPORT::JAutoTreeWriter< JKey_t >::JAutoTreeWriter ( )
inline

Default constrtuctor.

Definition at line 51 of file JAutoTreeWriter.hh.

52  {}
template<class JKey_t>
template<class T >
JSUPPORT::JAutoTreeWriter< JKey_t >::JAutoTreeWriter ( JType< T type)
inline

Constructor.

Parameters
typedata type

Definition at line 61 of file JAutoTreeWriter.hh.

62  {
63  this->insert<T>();
64  }

Member Function Documentation

template<class JKey_t>
template<class T >
static JKey_t JSUPPORT::JAutoTreeWriter< JKey_t >::getKey ( JType< T type)
static

Get key.

This method should be overloaded for the requested data types.

Parameters
typedata type
Returns
key
template<class JKey_t>
template<class T >
void JSUPPORT::JAutoTreeWriter< JKey_t >::insert ( )
inline

Insert (list of) data type(s).

Definition at line 83 of file JAutoTreeWriter.hh.

84  {
85  insert<T>(JTOOLS::JAutomate<JElement_t>());
86  }
Auxiliary class for automatic element creation.
Definition: JAutoMap.hh:40
template<class JKey_t>
virtual void JSUPPORT::JAutoTreeWriter< JKey_t >::open ( const char *  file_name)
inlinevirtual

Open file.

Parameters
file_namefile name

Reimplemented from JROOT::JRootOutputFile.

Definition at line 94 of file JAutoTreeWriter.hh.

95  {
96  JRootOutputFile::open(file_name);
97 
98  if (is_open()) {
99  for (iterator i = this->begin(); i != this->end(); ++i) {
100  i->second->SetDirectory(getFile());
101  }
102  }
103  }
TFile * getFile() const
Get file.
Definition: JRootFile.hh:65
map_type::iterator iterator
virtual void open(const char *file_name)
Open file.
Definition: JRootFile.hh:177
virtual bool is_open() const
Check is file is open.
Definition: JRootFile.hh:76
template<class JKey_t>
virtual void JSUPPORT::JAutoTreeWriter< JKey_t >::close ( )
inlinevirtual

Close file.

Reimplemented from JROOT::JRootOutputFile.

Definition at line 109 of file JAutoTreeWriter.hh.

110  {
111  // Write objects in memory.
112 
113  if (is_open()) {
114  getFile()->Write();
115  }
116 
117  // Detach TTree from TDirectory to avoid deletion of TTree.
118 
119  for (iterator i = this->begin(); i != this->end(); ++i) {
120  i->second->SetDirectory(0);
121  }
122 
123  // Close file.
124 
125  if (is_open()) {
126  getFile()->Close();
127  }
128 
129  reset();
130 
131  // Reset TTree for next run.
132 
133  for (iterator i = this->begin(); i != this->end(); ++i) {
134  i->second->Reset();
135  }
136  }
virtual void reset()
Reset pointer.
Definition: JStorage.hh:42
TFile * getFile() const
Get file.
Definition: JRootFile.hh:65
map_type::iterator iterator
virtual bool is_open() const
Check is file is open.
Definition: JRootFile.hh:76
template<>
int JSUPPORT::JAutoTreeWriter< JNET::JTag >::getKey ( JLANG::JType< T type)
Parameters
typedata type
Returns
map element

Definition at line 48 of file JDataWriter.cc.

49  {
50  return getTag<T>();
51  }
template<>
int JSUPPORT::JAutoTreeWriter< int >::getKey ( JLANG::JType< T type)
Parameters
typedata type
Returns
map element

Definition at line 37 of file JRoot.cc.

38  {
39  return KM3NETDAQ::getDataType<T>();
40  }
template<class JKey_t, class JValue_t>
template<class T >
static value_type JTOOLS::JAutoMap< JKey_t, JValue_t >::getAutoElement ( JType< T type)
staticinherited

Creation of a map element for given data type.

This method should be overloaded for the requested data types if the method insert() is used without argument.

Parameters
typedata type
Returns
element
template<class JKey_t, class JValue_t>
template<class T , class JElement_t >
void JTOOLS::JAutoMap< JKey_t, JValue_t >::insert ( const JAutomate< JElement_t > &  automate)
inlineinherited

Insert (list of) data type(s).

Parameters
automatetype defined element

Definition at line 131 of file JAutoMap.hh.

132  {
133  insert(JType<T>(), automate);
134  }
void insert()
Insert list of data types.
Definition: JAutoMap.hh:119
template<class JKey_t, class JValue_t>
template<class T , class JElement_t >
void JTOOLS::JAutoMap< JKey_t, JValue_t >::insert ( JType< T type,
const JAutomate< JElement_t > &  automate 
)
inlineprotectedinherited

Insertion of single data type.

Parameters
typedata type
automateelement automate by data type

Definition at line 144 of file JAutoMap.hh.

146  {
147  map_type::insert(automate.getElement(type));
148  }
static JElement_t getElement(JType< T > type)
Get element.
Definition: JAutoMap.hh:48
template<class JKey_t, class JValue_t>
template<class JHead_t , class JTail_t , class JElement_t >
void JTOOLS::JAutoMap< JKey_t, JValue_t >::insert ( JType< JTypeList< JHead_t, JTail_t > >  typelist,
const JAutomate< JElement_t > &  automate 
)
inlineprotectedinherited

Recursive insertion of data types.

Parameters
typelisttype list
automateelement automate by data type

Definition at line 158 of file JAutoMap.hh.

160  {
161  insert(JType<JHead_t>(), automate);
162  insert(JType<JTail_t>(), automate);
163  }
void insert()
Insert list of data types.
Definition: JAutoMap.hh:119
template<class JKey_t, class JValue_t>
template<class JElement_t >
void JTOOLS::JAutoMap< JKey_t, JValue_t >::insert ( JType< JNullType type,
const JAutomate< JElement_t > &  automate 
)
inlineprotectedinherited

Template specialisation to terminate insertion of data types.

Parameters
typenull type
automateelement automate by data type

Definition at line 173 of file JAutoMap.hh.

175  {}
TFile* JROOT::JRootFile::getFile ( ) const
inlineinherited

Get file.

Returns
pointer to file

Definition at line 65 of file JRootFile.hh.

66  {
67  return get();
68  }
virtual bool JROOT::JRootFile::is_open ( ) const
inlinevirtualinherited

Check is file is open.

Returns
true if open; else false

Implements JLANG::JAccessible.

Definition at line 76 of file JRootFile.hh.

77  {
78  return (is_valid() && getFile()->IsOpen());
79  }
bool is_valid() const
Check validity of pointer.
TFile * getFile() const
Get file.
Definition: JRootFile.hh:65
static void JLANG::JThrow< JAccessible >::Throw ( const bool  option)
inlinestaticinherited

Enable/disable throw option.

Parameters
optiontrue enable; false disable

Definition at line 37 of file JThrow.hh.

38  {
39  do_throw = option;
40  }
static bool do_throw
throw option
Definition: JThrow.hh:28
static int JLANG::JThrow< JAccessible >::Throw ( const JException error,
const int  value = -1 
)
inlinestaticinherited

Throw exception or return error.

Parameters
errorexception
valuereturn code
Returns
return code

Definition at line 50 of file JThrow.hh.

51  {
52  using namespace std;
53 
54  if (do_throw) {
55  throw error;
56  }
57 
58  cerr << error.what() << endl;
59 
60  return value;
61  }
static bool do_throw
throw option
Definition: JThrow.hh:28
virtual const char * what() const
Get error message.
Definition: JException.hh:48
template<class JClass_t, template< class > class JMemory_t = JNew>
virtual void JLANG::JStorage< JClass_t, JMemory_t >::reset ( )
inlinevirtualinherited

Reset pointer.

The allocated memory is released.

Reimplemented from JLANG::JPointer< JClass_t >.

Reimplemented in JLANG::JSharedPointer< JClass_t, JMemory_t >, JLANG::JSharedPointer< JPHYSICS::JRadiation >, JLANG::JSharedPointer< JWeightEvent >, JLANG::JSharedPointer< JAccessibleObjectIterator< KM3NETDAQ::KM3NETDAQ::JDAQEvent > >, JLANG::JSharedPointer< const TFormula >, JLANG::JSharedPointer< JObjectIterator< T > >, JLANG::JSharedPointer< JFIT::JMEstimator >, JLANG::JSharedPointer< JAbstractAutoPointer< JBase_t > >, JLANG::JSharedPointer< JTRIGGER::JDAQHitSelector >, JLANG::JSharedPointer< JAccessibleObjectIterator< JNullType > >, JLANG::JSharedPointer< match_type >, JLANG::JSharedPointer< JAccessibleObjectIterator< JDAQSummaryslice > >, JLANG::JSharedPointer< JAccessibleObjectIterator< JTypeList< JDAQEvent, JTypelist_t > > >, JLANG::JSharedPointer< JAccessibleObjectIterator< JTail_t > >, JLANG::JSharedPointer< JLOGGER::JLogger >, JLANG::JSharedPointer< JAccessibleObjectIterator< T > >, JLANG::JSharedPointer< JParserElementInterface >, JLANG::JSharedPointer< JExceptionHandler >, JLANG::JSharedPointer< JObjectOutput< JHead_t > >, JLANG::JSharedPointer< JAccessibleObjectIterator< JHead_t > >, JLANG::JSharedPointer< JRewindableObjectIterator< JTail_t > >, JLANG::JSharedPointer< JRewindableObjectIterator< JHead_t > >, JLANG::JSharedPointer< JObjectOutput< T > >, JLANG::JSharedPointer< JBase_t >, JLANG::JSharedPointer< JObjectOutput< JTail_t > >, JLANG::JSharedPointer< JPropertiesElementInterface >, JLANG::JSharedPointer< JTRIGGER::JMatch >, JLANG::JSharedPointer< JRewindableObjectIterator< const T > >, JLANG::JSharedPointer< JRewindableObjectIterator< T > >, JLANG::JSharedPointer< JAccessibleObjectOutput< T > >, JLANG::JSharedPointer< JNET::JControlHost >, and JLANG::JSharedPointer< JTOOLS::JMultiMapTransformer >.

Definition at line 42 of file JStorage.hh.

43  {
44  if (this->is_valid()) {
45  this->release();
46  }
47 
49  }
bool is_valid() const
Check validity of pointer.
virtual void reset()
Reset pointer.
Definition: JPointer.hh:84
void release()
Release memory.
Definition: JStorage.hh:91
template<class JClass_t>
template<class T >
void JLANG::JPointer< JClass_t >::reset ( const JPointer< T > &  pointer)
inlineinherited

Reset pointer.

Parameters
pointerpointer to object

Definition at line 108 of file JPointer.hh.

109  {
110  this->reset(pointer.get());
111  }
virtual void reset()
Reset pointer.
Definition: JPointer.hh:84
virtual JClass_t * get() const
Get pointer.
Definition: JPointer.hh:64
template<class JClass_t>
void JLANG::JAbstractPointer< JClass_t >::reset ( JClass_t *  p)
inlineinherited

Reset pointer.

Parameters
ppointer to object

Definition at line 94 of file JAbstractPointer.hh.

95  {
96  if (this->get() != p) {
97 
98  this->reset();
99 
100  if (p != NULL) {
101  this->set(p);
102  }
103  }
104  }
virtual void reset()=0
Reset pointer.
virtual void set(JClass_t *p)=0
Set pointer.
template<class JClass_t, template< class > class JMemory_t = JNew>
void JLANG::JStorage< JClass_t, JMemory_t >::recreate ( )
inlineinherited

Recreate object in memory.

A new object is created if no memory is allocated yet, else the previously created object is maintained.

Definition at line 57 of file JStorage.hh.

58  {
59  if (!this->is_valid()) {
60  this->set(memory_type::create());
61  }
62  }
bool is_valid() const
Check validity of pointer.
virtual void set(JClass_t *p)
Set pointer.
Definition: JPointer.hh:75
template<class JClass_t, template< class > class JMemory_t = JNew>
void JLANG::JStorage< JClass_t, JMemory_t >::create ( )
inlineinherited

Create object in memory.

The memory allocated by a previously created object will be released.

Definition at line 69 of file JStorage.hh.

70  {
71  this->reset(memory_type::create());
72  }
virtual void reset()
Reset pointer.
Definition: JStorage.hh:42
template<class JClass_t, template< class > class JMemory_t = JNew>
void JLANG::JStorage< JClass_t, JMemory_t >::create ( const unsigned int  size)
inlineinherited

Create array of objects in memory.

The memory allocated by previously created objects will be released.

Parameters
sizenumber of elements

Definition at line 81 of file JStorage.hh.

82  {
83  this->reset(memory_type::create(size));
84  }
virtual void reset()
Reset pointer.
Definition: JStorage.hh:42
template<class JClass_t, template< class > class JMemory_t = JNew>
void JLANG::JStorage< JClass_t, JMemory_t >::release ( )
inlineprotectedinherited

Release memory.

Definition at line 91 of file JStorage.hh.

92  {
93  memory_type::release(this->get());
94  }
template<class JClass_t>
virtual JClass_t* JLANG::JPointer< JClass_t >::get ( ) const
inlinevirtualinherited
template<class JClass_t>
virtual void JLANG::JPointer< JClass_t >::set ( JClass_t *  p)
inlinevirtualinherited

Set pointer.

Parameters
ppointer to object

Implements JLANG::JAbstractPointer< JClass_t >.

Reimplemented in JLANG::JSharedPointer< JClass_t, JMemory_t >, JLANG::JSharedPointer< JPHYSICS::JRadiation >, JLANG::JSharedPointer< JWeightEvent >, JLANG::JSharedPointer< JAccessibleObjectIterator< KM3NETDAQ::KM3NETDAQ::JDAQEvent > >, JLANG::JSharedPointer< const TFormula >, JLANG::JSharedPointer< JObjectIterator< T > >, JLANG::JSharedPointer< JFIT::JMEstimator >, JLANG::JSharedPointer< JAbstractAutoPointer< JBase_t > >, JLANG::JSharedPointer< JTRIGGER::JDAQHitSelector >, JLANG::JSharedPointer< JAccessibleObjectIterator< JNullType > >, JLANG::JSharedPointer< match_type >, JLANG::JSharedPointer< JAccessibleObjectIterator< JDAQSummaryslice > >, JLANG::JSharedPointer< JAccessibleObjectIterator< JTypeList< JDAQEvent, JTypelist_t > > >, JLANG::JSharedPointer< JAccessibleObjectIterator< JTail_t > >, JLANG::JSharedPointer< JLOGGER::JLogger >, JLANG::JSharedPointer< JAccessibleObjectIterator< T > >, JLANG::JSharedPointer< JParserElementInterface >, JLANG::JSharedPointer< JExceptionHandler >, JLANG::JSharedPointer< JObjectOutput< JHead_t > >, JLANG::JSharedPointer< JAccessibleObjectIterator< JHead_t > >, JLANG::JSharedPointer< JRewindableObjectIterator< JTail_t > >, JLANG::JSharedPointer< JRewindableObjectIterator< JHead_t > >, JLANG::JSharedPointer< JObjectOutput< T > >, JLANG::JSharedPointer< JBase_t >, JLANG::JSharedPointer< JObjectOutput< JTail_t > >, JLANG::JSharedPointer< JPropertiesElementInterface >, JLANG::JSharedPointer< JTRIGGER::JMatch >, JLANG::JSharedPointer< JRewindableObjectIterator< const T > >, JLANG::JSharedPointer< JRewindableObjectIterator< T > >, JLANG::JSharedPointer< JAccessibleObjectOutput< T > >, JLANG::JSharedPointer< JNET::JControlHost >, and JLANG::JSharedPointer< JTOOLS::JMultiMapTransformer >.

Definition at line 75 of file JPointer.hh.

76  {
77  this->__p = p;
78  }
JClass_t * __p
pointer to object
Definition: JPointer.hh:136
template<class JClass_t>
template<class T >
void JLANG::JPointer< JClass_t >::set ( const JPointer< T > &  pointer)
inlineinherited

Set pointer.

Parameters
pointerpointer to object

Definition at line 96 of file JPointer.hh.

97  {
98  this->set(pointer.get());
99  }
virtual JClass_t * get() const
Get pointer.
Definition: JPointer.hh:64
virtual void set(JClass_t *p)
Set pointer.
Definition: JPointer.hh:75
template<class JClass_t>
JClass_t* const& JLANG::JPointer< JClass_t >::getReference ( ) const
inlineinherited

Get rereference to internal pointer.

Returns
reference to internal pointer

Definition at line 119 of file JPointer.hh.

120  {
121  return __p;
122  }
JClass_t * __p
pointer to object
Definition: JPointer.hh:136
template<class JClass_t>
JClass_t* & JLANG::JPointer< JClass_t >::getReference ( )
inlineinherited

Get rereference to internal pointer.

Returns
reference to internal pointer

Definition at line 130 of file JPointer.hh.

131  {
132  return __p;
133  }
JClass_t * __p
pointer to object
Definition: JPointer.hh:136
template<class JClass_t>
virtual bool JLANG::JAbstractPointer< JClass_t >::equals ( const JAbstractPointer< JClass_t > &  object) const
inlinevirtualinherited

Equals.

The equality is evaluated by comparison of the internal pointers.

Parameters
objectabstract pointer
Returns
true if equals; else false

Definition at line 50 of file JAbstractPointer.hh.

51  {
52  return this->get() == object.get();
53  }
template<class JClass_t>
bool JLANG::JAbstractPointer< JClass_t >::is_valid ( ) const
inlineinherited

Check validity of pointer.

Returns
true if pointer not null; else false

Definition at line 83 of file JAbstractPointer.hh.

84  {
85  return this->get() != NULL;
86  }
template<class JClass_t>
JClass_t* JLANG::JAbstractPointer< JClass_t >::operator-> ( ) const
inlineinherited

Smart pointer operator.

Returns
pointer to object

Definition at line 112 of file JAbstractPointer.hh.

113  {
114  if (!is_valid())
115  throw JNullPointerException("JAbstractPointer::operator->()");
116  else
117  return this->get();
118  }
bool is_valid() const
Check validity of pointer.
Exception for null pointer operation.
Definition: JException.hh:216
template<class JClass_t>
JLANG::JAbstractPointer< JClass_t >::operator JClass_t * ( ) const
inlineinherited

Type conversion operator.

Returns
pointer to object

Definition at line 126 of file JAbstractPointer.hh.

127  {
128  return this->get();
129  }

Member Data Documentation

bool JLANG::JThrow< JAccessible >::do_throw
staticprotectedinherited

throw option

Set default throw option to true.

Definition at line 28 of file JThrow.hh.

template<class JClass_t>
JClass_t* JLANG::JPointer< JClass_t >::__p
protectedinherited

pointer to object

Definition at line 136 of file JPointer.hh.


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