Exemplo n.º 1
0
COSBindingNode::COSBindingNode(std::string nodeName, CosNaming::NamingContext_var& nodeContext)
{
	name = nodeName;
	_isDead = false;
	_isLeaf = false;

	context = nodeContext;
	
	walkBranches(nodeContext);
}
Exemplo n.º 2
0
UrlTreeBranch* Urls::Impl::findBranch(const std::string& path) {
    return walkBranches(path, findSingle);
}
Exemplo n.º 3
0
void Urls::Impl::addHandler(const std::string& url, PathHandler handler) {
    UrlTreeBranch* branch = walkBranches(url, addSingle);
    branch->onSelected = handler;
}