author | Michael Krelin <hacker@klever.net> | 2007-01-11 19:36:27 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-01-11 19:36:27 (UTC) |
commit | 6c7179a664044cfbed65ea63b0b4540817eb3408 (patch) (unidiff) | |
tree | 76bda3b85e535dafad1204b65ed67c773abe6af0 /lib/extension.cc | |
parent | 791d290f19f0cd06ecc61c3122753bcb25b0972f (diff) | |
download | libopkele-6c7179a664044cfbed65ea63b0b4540817eb3408.zip libopkele-6c7179a664044cfbed65ea63b0b4540817eb3408.tar.gz libopkele-6c7179a664044cfbed65ea63b0b4540817eb3408.tar.bz2 |
a fix for missing class qualifiers
-rw-r--r-- | lib/extension.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/extension.cc b/lib/extension.cc index bd2195d..44cf0cb 100644 --- a/lib/extension.cc +++ b/lib/extension.cc | |||
@@ -7,8 +7,8 @@ namespace opkele { | |||
7 | throw not_implemented(OPKELE_CP_ "Consumer checkid_hook not implemented"); | 7 | throw not_implemented(OPKELE_CP_ "Consumer checkid_hook not implemented"); |
8 | } | 8 | } |
9 | void id_res_hook(const params_t& p,const params_t& sp,const string& identity) { | 9 | void extension_t::id_res_hook(const params_t& p,const params_t& sp,const string& identity) { |
10 | throw not_implemented(OPKELE_CP_ "Consumer id_res_hook not implemented"); | 10 | throw not_implemented(OPKELE_CP_ "Consumer id_res_hook not implemented"); |
11 | } | 11 | } |
12 | void checkid_hook(const params_t& pin,params_t& pout) { | 12 | void extension_t::checkid_hook(const params_t& pin,params_t& pout) { |
13 | throw not_implemented(OPKELE_CP_ "Server checkid_hook not implemented"); | 13 | throw not_implemented(OPKELE_CP_ "Server checkid_hook not implemented"); |
14 | } | 14 | } |