47#if !defined( __ICC ) && !defined( __COVERITY__ )
124 template <
class OTHER>
126 this->
m_pObject =
dynamic_cast<TYPE*
>( pObj );
131 template <
class OTHER>
133 this->
m_pObject =
dynamic_cast<TYPE*
>(
const_cast<OTHER*
>( pObj ) );
A DataObject is the base class of any identifiable object on any data store.
IRegistry * registry() const
Get pointer to Registry.
Data provider interface definition.
The IRegistry represents the entry door to the environment any data object residing in a transient da...
Helper class to configure smart pointer functionality.
A small class used to access easily (and efficiently) data items residing in data stores.
const std::string & path() const
Path name.
IDataProviderSvc * service()
Retrieve data service.
IRegistry * directory()
Access to data directory.
IRegistry * m_pRegistry
Pointer to the data registry containing the object.
SmartDataPtr(SmartDataObjectPtr &refObject, std::string path)
Standard constructor: Construct an SmartDataPtr instance which is able to connect to a DataObject ins...
SmartDataPtr(IDataProviderSvc *pService, std::string fullPath)
Standard constructor: Construct an SmartDataPtr instance which is able to connect to a DataObject ins...
SmartDataPtr & operator=(OTHER *pObj)
Automatic conversion to data type.
SmartDataPtr & operator=(const OTHER *pObj)
Automatic conversion to data type.
virtual ~SmartDataPtr()=default
SmartDataPtr(IDataProviderSvc *pService, IRegistry *pDirectory)
Standard constructor: Construct an SmartDataPtr instance which is able to connect to a DataObject ins...
SmartDataPtr(IDataProviderSvc *pService, DataObject *pObject, std::string path)
Standard constructor: Construct an SmartDataPtr instance which is able to connect to a DataObject ins...
SmartDataPtr(const SmartDataObjectPtr ©)
Copy constructor: Construct an copy of a SmartDataPtr instance.
SmartDataPtr(SmartDataObjectPtr &refObject, IRegistry *pDirectory)
Standard constructor: Construct an SmartDataPtr instance which is able to connect to a DataObject ins...
SmartDataStorePtr(IDataProviderSvc *pService, IRegistry *pRegistry, std::string path)
TYPE * m_pObject
Pointer to data store object.