More documentation updates.

This commit is contained in:
Jason Turner
2011-04-04 07:08:28 -06:00
parent 0d238b1617
commit f1918f147d
5 changed files with 13 additions and 4 deletions

View File

@@ -175,7 +175,11 @@ namespace chaiscript
};
}
/// \brief Common typedef used for passing of any registered function in ChaiScript
typedef boost::shared_ptr<dispatch::Proxy_Function_Base> Proxy_Function;
/// \brief Const version of Proxy_Function chaiscript. Points to a const Proxy_Function. This is how most registered functions
/// are handled internally.
typedef boost::shared_ptr<const dispatch::Proxy_Function_Base> Const_Proxy_Function;
namespace exception