summaryrefslogtreecommitdiffabout
path: root/include
authorMichael Krelin <hacker@klever.net>2007-01-11 00:58:24 (UTC)
committer Michael Krelin <hacker@klever.net>2007-01-11 00:58:24 (UTC)
commita6a0c64df62882893b0e3d3566dc828e7fe4e328 (patch) (unidiff)
tree4d4948b8852e46e3f49ebd413f8ab84f703a76d0 /include
parent06eaf00c48fc563245b85c2be4b8b5a03ef2cfe9 (diff)
downloadlibopkele-a6a0c64df62882893b0e3d3566dc828e7fe4e328.zip
libopkele-a6a0c64df62882893b0e3d3566dc828e7fe4e328.tar.gz
libopkele-a6a0c64df62882893b0e3d3566dc828e7fe4e328.tar.bz2
fixed a definition in header
Diffstat (limited to 'include') (more/less context) (ignore whitespace changes)
-rw-r--r--include/opkele/extension.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/opkele/extension.h b/include/opkele/extension.h
index 3fb5f6e..a9d301b 100644
--- a/include/opkele/extension.h
+++ b/include/opkele/extension.h
@@ -1,14 +1,14 @@
1#ifndef __OPKELE_EXTENSIONS_H 1#ifndef __OPKELE_EXTENSION_H
2#define __OPKELE_EXTENSIONS_H 2#define __OPKELE_EXTENSION_H
3 3
4/** 4/**
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 */
14namespace opkele { 14namespace opkele {
@@ -47,13 +47,13 @@ namespace opkele {
47 */ 47 */
48 virtual void checkid_hook(const params_t& pin,params_t& pout); 48 virtual void checkid_hook(const params_t& pin,params_t& pout);
49 49
50 /** 50 /**
51 * Casts the object to pointer to itself. For convenient passing 51 * Casts the object to pointer to itself. For convenient passing
52 * of pointer. 52 * of pointer.
53 */ 53 */
54 operator extension_t*(void) { return this; } 54 operator extension_t*(void) { return this; }
55 }; 55 };
56 56
57} 57}
58 58
59#endif /* __OPKELE_EXTENSIONS_H */ 59#endif /* __OPKELE_EXTENSION_H */