diff options
author | Steve Bennett <steveb@workware.net.au> | 2010-10-22 20:32:31 +1000 |
---|---|---|
committer | Steve Bennett <steveb@workware.net.au> | 2010-12-16 08:10:39 +1000 |
commit | d69cd759e16a4572202f8e95e422604fb5725707 (patch) | |
tree | c592b212af9f76a9274b2b06965fbdb8e4690bda /jim-load-static-exts.c | |
parent | 4f988c521cf54e2353ed4933fefcca4cb778bcdb (diff) | |
download | jimtcl-d69cd759e16a4572202f8e95e422604fb5725707.zip jimtcl-d69cd759e16a4572202f8e95e422604fb5725707.tar.gz jimtcl-d69cd759e16a4572202f8e95e422604fb5725707.tar.bz2 |
Add a pure-TCl OO implementation to Jim
And document the OO extension in README.oo
Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'jim-load-static-exts.c')
-rw-r--r-- | jim-load-static-exts.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/jim-load-static-exts.c b/jim-load-static-exts.c index 003b74b..e025521 100644 --- a/jim-load-static-exts.c +++ b/jim-load-static-exts.c @@ -54,5 +54,11 @@ int Jim_InitStaticExtensions(Jim_Interp *interp) #ifdef jim_ext_syslog LOAD_EXT(syslog); #endif +#ifdef jim_ext_oo + LOAD_EXT(oo); +#endif +#ifdef jim_ext_tree + LOAD_EXT(tree); +#endif return JIM_OK; } |