#include #include namespace opkele { void extension_chain_t::checkid_hook(basic_openid_message& om){ for(iterator i=begin();i!=end();++i) (*i)->checkid_hook(om); } void extension_chain_t::id_res_hook(const basic_openid_message& om,const basic_openid_message& sp) { for(iterator i=begin();i!=end();++i) (*i)->id_res_hook(om,sp); } void extension_chain_t::checkid_hook(const basic_openid_message& inm,basic_openid_message& oum) { for(iterator i=begin();i!=end();++i) (*i)->checkid_hook(inm,oum); } }