本文整理汇总了C++中ice::ObjectPrxPtr::ice_getFacet方法的典型用法代码示例。如果您正苦于以下问题:C++ ObjectPrxPtr::ice_getFacet方法的具体用法?C++ ObjectPrxPtr::ice_getFacet怎么用?C++ ObjectPrxPtr::ice_getFacet使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ice::ObjectPrxPtr
的用法示例。
在下文中一共展示了ObjectPrxPtr::ice_getFacet方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: test
//.........这里部分代码省略.........
adapter->addFacet(obj1, Ice::stringToIdentity("id2"), "f1");
adapter->addFacet(obj2, Ice::stringToIdentity("id2"), "f2");
adapter->addFacet(obj3, Ice::stringToIdentity("id2"), "");
Ice::FacetMap fm = adapter->removeAllFacets(Ice::stringToIdentity("id1"));
test(fm.size() == 2);
test(fm["f1"] == obj1);
test(fm["f2"] == obj2);
try
{
adapter->removeAllFacets(Ice::stringToIdentity("id1"));
test(false);
}
catch(const Ice::NotRegisteredException&)
{
}
fm = adapter->removeAllFacets(Ice::stringToIdentity("id2"));
test(fm.size() == 3);
test(fm["f1"] == obj1);
test(fm["f2"] == obj2);
test(fm[""] == obj3);
cout << "ok" << endl;
adapter->deactivate();
}
cout << "testing stringToProxy... " << flush;
string ref = "d:" + getTestEndpoint(communicator, 0);
Ice::ObjectPrxPtr db = communicator->stringToProxy(ref);
test(db);
cout << "ok" << endl;
cout << "testing unchecked cast... " << flush;
Ice::ObjectPrxPtr prx = ICE_UNCHECKED_CAST(Ice::ObjectPrx, db);
test(prx->ice_getFacet().empty());
#ifdef ICE_CPP11_MAPPING
prx = Ice::uncheckedCast<Ice::ObjectPrx>(db, "facetABCD");
#else
prx = Ice::ObjectPrx::uncheckedCast(db, "facetABCD");
#endif
test(prx->ice_getFacet() == "facetABCD");
Ice::ObjectPrxPtr prx2 = ICE_UNCHECKED_CAST(Ice::ObjectPrx, prx);
test(prx2->ice_getFacet() == "facetABCD");
#ifdef ICE_CPP11_MAPPING
shared_ptr<Ice::ObjectPrx> prx3 = Ice::uncheckedCast<Ice::ObjectPrx>(prx, "");
#else
Ice::ObjectPrx prx3 = Ice::ObjectPrx::uncheckedCast(prx, "");
#endif
test(prx3->ice_getFacet().empty());
DPrxPtr d = ICE_UNCHECKED_CAST(Test::DPrx, db);
test(d->ice_getFacet().empty());
#ifdef ICE_CPP11_MAPPING
shared_ptr<DPrx> df = Ice::uncheckedCast<Test::DPrx>(db, "facetABCD");
#else
DPrx df = Test::DPrx::uncheckedCast(db, "facetABCD");
#endif
test(df->ice_getFacet() == "facetABCD");
DPrxPtr df2 = ICE_UNCHECKED_CAST(Test::DPrx, df);
test(df2->ice_getFacet() == "facetABCD");
#ifdef ICE_CPP11_MAPPING
shared_ptr<DPrx> df3 = Ice::uncheckedCast<Test::DPrx>(df, "");
#else
DPrx df3 = Test::DPrx::uncheckedCast(df, "");
#endif
test(df3->ice_getFacet().empty());
cout << "ok" << endl;