Open Inventor Release 2025.1.0
 
Loading...
Searching...
No Matches
SbThreadStorage< bool > Class Reference

VSG extension Template class specialization for bool type instance thread Local Storage. More...

#include <Inventor/threads/SbThreadStorage.h>

+ Inheritance diagram for SbThreadStorage< bool >:

Public Member Functions

virtual ~SbThreadStorage ()
 Destructor.
 
SbThreadStorage< bool > & operator<<= (bool t)
 Override default <<= operator Set the specified value for the current thread.
 
SbThreadStorage< bool > & operator>>= (bool t)
 Override default >>= operator Set the specified value for all threads.
 
 operator bool () const
 Redefine operator bool to return the value itself.
 
 SbThreadStorage ()
 Default constructor.
 
 SbThreadStorage (const bool t)
 
virtual ~SbThreadStorage ()
 Storage destructor: Find current storage in the global storage map, Delete thread dependent entry, And remove each entry.
 
SbThreadStorage< bool > & operator= (bool t)
 Override operator= Set value of the storage for current thread.
 
bool operator-> () const
 Override operator-> Gets value of the storage for current thread.
 
bool operator* () const
 Override operator T*() Destroying objects from delete operator is not allowed.
 
 operator bool () const
 Override operator bool() Comparing templated objects work as comparing direct object.
 
void call (Func f)
 Calls the passed function to all registered threads object.
 
void call (Func f, Param p)
 Calls the passed function to all registered threads object.
 

Detailed Description

VSG extension Template class specialization for bool type instance thread Local Storage.

This class provides a way to declare a class member of type bool as a thread Specific variables.

Definition at line 177 of file SbThreadStorage.h.

Constructor & Destructor Documentation

◆ ~SbThreadStorage() [1/2]

virtual SbThreadStorage< bool >::~SbThreadStorage ( )
inlinevirtual

Destructor.

Definition at line 167 of file SbThreadStorage.h.

◆ SbThreadStorage() [1/2]

Default constructor.

Definition at line 1 of file SbThreadStorage.h.

◆ SbThreadStorage() [2/2]

SbThreadStorage< bool >::SbThreadStorage ( const bool t)
inline

Definition at line 1 of file SbThreadStorage.h.

◆ ~SbThreadStorage() [2/2]

virtual SbThreadStorage< bool >::~SbThreadStorage ( )
inlinevirtual

Storage destructor: Find current storage in the global storage map, Delete thread dependent entry, And remove each entry.

Definition at line 64 of file SbThreadStorage.h.

Member Function Documentation

◆ call() [1/2]

void SbThreadStorage< bool >::call ( Func f)
inline

Calls the passed function to all registered threads object.

Definition at line 118 of file SbThreadStorage.h.

◆ call() [2/2]

void SbThreadStorage< bool >::call ( Func f,
Param p )
inline

Calls the passed function to all registered threads object.

Definition at line 135 of file SbThreadStorage.h.

◆ operator bool() [1/2]

SbThreadStorage< bool >::operator bool ( ) const
inline

Override operator bool() Comparing templated objects work as comparing direct object.

for example, for: SbThreadStorage< SoCache* > m_cache; doing: m_cache == NULL run as doing

Definition at line 111 of file SbThreadStorage.h.

◆ operator bool() [2/2]

SbThreadStorage< bool >::operator bool ( ) const
inline

Redefine operator bool to return the value itself.

Definition at line 210 of file SbThreadStorage.h.

◆ operator*()

bool SbThreadStorage< bool >::operator* ( ) const
inline

Override operator T*() Destroying objects from delete operator is not allowed.

Definition at line 99 of file SbThreadStorage.h.

◆ operator->()

bool SbThreadStorage< bool >::operator-> ( ) const
inline

Override operator-> Gets value of the storage for current thread.

Returns NULL if the storage does not exist for current thread.

Definition at line 83 of file SbThreadStorage.h.

◆ operator<<=()

SbThreadStorage< bool > & SbThreadStorage< bool >::operator<<= ( bool t)
inline

Override default <<= operator Set the specified value for the current thread.

Definition at line 167 of file SbThreadStorage.h.

◆ operator=()

SbThreadStorage< bool > & SbThreadStorage< bool >::operator= ( bool t)
inline

Override operator= Set value of the storage for current thread.

If current thread storage was not existing, create it.

Definition at line 72 of file SbThreadStorage.h.

◆ operator>>=()

SbThreadStorage< bool > & SbThreadStorage< bool >::operator>>= ( bool t)
inline

Override default >>= operator Set the specified value for all threads.

Definition at line 199 of file SbThreadStorage.h.


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