![]() |
|
|
Generated: 18 Jul 2008 |
#include <LinkManager.h>
Collaboration diagram for LinkManager::Link:

Definition at line 28 of file LinkManager.h.
Public Member Functions | |
| Link (long id, const std::string &path, const DataObject *pObject=0) | |
| Standard constructor. | |
| Link () | |
| Standard constructor. | |
| Link & | operator= (const Link &link) |
| Equality operator: check pathes only. | |
| virtual | ~Link () |
| Default destructor. | |
| void | set (long id, const std::string &path, const DataObject *pObject) |
| Update the link content. | |
| bool | operator== (const Link &link) const |
| Equality operator: check pathes only. | |
| void | setObject (const DataObject *pObject) |
| Update object pointer. | |
| DataObject * | object () const |
| Const access to data object. | |
| const std::string & | path () const |
| Access to path of object. | |
| long | ID () const |
| Link identifier. | |
| virtual IOpaqueAddress * | address () |
| Access to the object's address. | |
Protected Attributes | |
| std::string | m_path |
| String containing path of symbolic link. | |
| DataObject * | m_pObject |
| Pointer to object behind the link. | |
| long | m_id |
| Link ID. | |
Friends | |
| class | LinkManager |
| DataObject is a friend. | |
| LinkManager::Link::Link | ( | long | id, | |
| const std::string & | path, | |||
| const DataObject * | pObject = 0 | |||
| ) | [inline] |
| LinkManager::Link::Link | ( | ) | [inline] |
| virtual LinkManager::Link::~Link | ( | ) | [inline, virtual] |
Equality operator: check pathes only.
Definition at line 48 of file LinkManager.h.
References LinkManager::link(), m_id, m_path, m_pObject, and setObject().
00048 { 00049 setObject(link.m_pObject); 00050 m_path = link.m_path; 00051 m_id = link.m_id; 00052 return *this; 00053 }
| void LinkManager::Link::set | ( | long | id, | |
| const std::string & | path, | |||
| const DataObject * | pObject | |||
| ) | [inline] |
Update the link content.
Definition at line 58 of file LinkManager.h.
References m_id, m_path, path(), and setObject().
| bool LinkManager::Link::operator== | ( | const Link & | link | ) | const [inline] |
Equality operator: check pathes only.
Definition at line 64 of file LinkManager.h.
References LinkManager::link(), and m_path.
| void LinkManager::Link::setObject | ( | const DataObject * | pObject | ) | [inline] |
Update object pointer.
Definition at line 68 of file LinkManager.h.
References m_pObject.
Referenced by Objects::access(), SmartRefBase::accessData(), Link(), operator=(), and set().
00068 { 00069 m_pObject = const_cast<DataObject*>(pObject); 00070 }
| DataObject* LinkManager::Link::object | ( | ) | const [inline] |
Const access to data object.
Definition at line 72 of file LinkManager.h.
References m_pObject.
Referenced by Objects::access(), and SmartRefBase::accessData().
00072 { 00073 return m_pObject; 00074 }
| const std::string& LinkManager::Link::path | ( | ) | const [inline] |
Access to path of object.
Definition at line 76 of file LinkManager.h.
References m_path.
Referenced by Objects::access(), SmartRefBase::accessData(), SmartRefBase::isEqualEx(), SmartRefBase::path(), and set().
00076 { 00077 return m_path; 00078 }
| long LinkManager::Link::ID | ( | ) | const [inline] |
Link identifier.
Definition at line 80 of file LinkManager.h.
References m_id.
Referenced by LinkManager::addLink().
00080 { 00081 return m_id; 00082 }
| IOpaqueAddress * LinkManager::Link::address | ( | ) | [virtual] |
Access to the object's address.
Definition at line 11 of file LinkManager.cpp.
References IRegistry::address(), m_pObject, and DataObject::registry().
00011 { 00012 if ( 0 != m_pObject ) { 00013 IRegistry* pReg = m_pObject->registry(); 00014 if ( 0 != pReg ) { 00015 return pReg->address(); 00016 } 00017 } 00018 return 0; 00019 }
friend class LinkManager [friend] |
std::string LinkManager::Link::m_path [protected] |
String containing path of symbolic link.
Definition at line 33 of file LinkManager.h.
Referenced by operator=(), operator==(), path(), and set().
DataObject* LinkManager::Link::m_pObject [protected] |
Pointer to object behind the link.
Definition at line 35 of file LinkManager.h.
Referenced by address(), object(), operator=(), and setObject().
long LinkManager::Link::m_id [protected] |