summaryrefslogtreecommitdiffabout
path: root/include/opkele/xserver.h
blob: e29bfe627c1f4d6f0348ca2a869016b76f252cf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef __OPKELE_XSERVER_H
#define __OPKELE_XSERVER_H

/**
 * @file
 * @brief OpenID server with built-in extension chain
 */

#include <opkele/extension_chain.h>
#include <opkele/server.h>

/**
 * @brief the main opkele namespace
 */
namespace opkele {

    /**
     * Extended OpenID server implementationwith built in
     * extensions chain.
     */
    class xserver_t : public server_t, public extension_chain_t {
	public:

	    void checkid_immediate(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0) {
		server_t::checkid_immediate(pin,return_to,pout,this);
	    }
	    void checkid_setup(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0) {
		server_t::checkid_setup(pin,return_to,pout,this);
	    }
	    void checkid_(mode_t mode,const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0) {
		server_t::checkid_(mode,pin,return_to,pout,this);
	    }
    };

}

#endif /* __OPKELE_XSERVER_H */