author | Michael Krelin <hacker@klever.net> | 2007-01-11 01:00:44 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-01-11 01:00:44 (UTC) |
commit | 791d290f19f0cd06ecc61c3122753bcb25b0972f (patch) (unidiff) | |
tree | cefcbce63ab7dca27c5cc6e1ac11c7e29b01b5b4 | |
parent | a6a0c64df62882893b0e3d3566dc828e7fe4e328 (diff) | |
download | libopkele-791d290f19f0cd06ecc61c3122753bcb25b0972f.zip libopkele-791d290f19f0cd06ecc61c3122753bcb25b0972f.tar.gz libopkele-791d290f19f0cd06ecc61c3122753bcb25b0972f.tar.bz2 |
doxygen writeup fix
-rw-r--r-- | include/opkele/extension.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/opkele/extension.h b/include/opkele/extension.h index a9d301b..2248324 100644 --- a/include/opkele/extension.h +++ b/include/opkele/extension.h | |||
@@ -5,25 +5,25 @@ | |||
5 | * @file | 5 | * @file |
6 | * @brief extensions framework basics | 6 | * @brief extensions framework basics |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include <opkele/types.h> | 9 | #include <opkele/types.h> |
10 | 10 | ||
11 | /** | 11 | /** |
12 | * @brief the main opkele namespace | 12 | * @brief the main opkele namespace |
13 | */ | 13 | */ |
14 | namespace opkele { | 14 | namespace opkele { |
15 | 15 | ||
16 | /** | 16 | /** |
17 | * OpenID consumer extension hooks base class | 17 | * OpenID extension hooks base class |
18 | */ | 18 | */ |
19 | class extension_t { | 19 | class extension_t { |
20 | public: | 20 | public: |
21 | /** | 21 | /** |
22 | * hook called by consumer before submitting data to OpenID server. | 22 | * hook called by consumer before submitting data to OpenID server. |
23 | * It is supposed to manipulate parameters list. | 23 | * It is supposed to manipulate parameters list. |
24 | * @param p parameters about to be submitted to server | 24 | * @param p parameters about to be submitted to server |
25 | * @param identity identity being verified. It may differ from the | 25 | * @param identity identity being verified. It may differ from the |
26 | * one available in parameters list in case of delegation | 26 | * one available in parameters list in case of delegation |
27 | */ | 27 | */ |
28 | virtual void checkid_hook(params_t& p,const string& identity); | 28 | virtual void checkid_hook(params_t& p,const string& identity); |
29 | /** | 29 | /** |