16 ServiceHandleBase(
const std::string& typeAndName,
20 setTypeAndName(typeAndName);
25 void ServiceHandleBase::setTypeAndName(
const std::string& typeAndName)
27 m_typeAndName = typeAndName;
30 if( (
pos = m_typeAndName.find(
'/' ) ) == std::string::npos )
35 m_name = m_typeAndName;
40 m_name = m_typeAndName.substr(
pos + 1 );
46 void ServiceHandleBase::setName(
const std::string&
name)
53 const std::string& ServiceHandleBase::typeAndName()
const