本文整理汇总了C++中NestedContact::getTypeName方法的典型用法代码示例。如果您正苦于以下问题:C++ NestedContact::getTypeName方法的具体用法?C++ NestedContact::getTypeName怎么用?C++ NestedContact::getTypeName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NestedContact
的用法示例。
在下文中一共展示了NestedContact::getTypeName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: update
void update() {
if (nc.getTypeName()=="") {
if (!contactable) return;
Type typ = contactable->getType();
if (typ.isValid()) {
nc.setTypeName(typ.getName());
}
}
}
示例2: open
//.........这里部分代码省略.........
close();
if (owned) delete ((PortCoreAdapter*)implementation);
implementation = newCore;
owned = true;
currentCore = newCore;
currentCore->active = false;
}
PortCoreAdapter& core = IMPL();
core.openable();
if (NetworkBase::localNetworkAllocation()&&contact2.getPort()<=0) {
YARP_DEBUG(Logger::get(), "local network allocation needed");
local = true;
}
bool success = true;
Contact address(contact2.getName(),
contact2.getCarrier(),
contact2.getHost(),
contact2.getPort());
address.setNestedContact(contact2.getNested());
core.setReadHandler(core);
if (contact2.getPort()>0 && contact2.getHost()!="") {
registerName = false;
}
std::string ntyp = getType().getNameOnWire();
if (ntyp=="") {
NestedContact nc;
nc.fromString(n);
if (nc.getTypeName()!="") ntyp = nc.getTypeName();
}
if (ntyp=="") {
ntyp = getType().getName();
}
if (ntyp!="") {
NestedContact nc;
nc.fromString(contact2.getName());
nc.setTypeName(ntyp);
contact2.setNestedContact(nc);
if (getType().getNameOnWire()!=ntyp) {
core.promiseType(Type::byNameOnWire(ntyp.c_str()));
}
}
if (registerName&&!local) {
address = NetworkBase::registerContact(contact2);
}
core.setControlRegistration(registerName);
success = (address.isValid()||local)&&(fakeName==nullptr);
if (success) {
// create a node if needed
Nodes& nodes = NameClient::getNameClient().getNodes();
nodes.prepare(address.getRegName());
}
// If we are a service client, go ahead and connect
if (success) {
NestedContact nc;
nc.fromString(address.getName());
if (nc.getNestedName()!="") {