mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
6c40c559e3
change how type T is gleaned from destructors and constructors in case of new syntax add a hell of a lot more examples, update and clean documentation
16 lines
638 B
ReStructuredText
16 lines
638 B
ReStructuredText
metatable_key
|
|
=============
|
|
*a key for setting and getting an object's metatable*
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
struct metatable_key_t {};
|
|
const metatable_key_t metatable_key;
|
|
|
|
You can use this in conjunction with :doc:`sol::table<table>` to set/get a metatable. Lua metatables are powerful ways to override default behavior of objects for various kinds of operators, among other things. Here is an entirely complete example, showing getting and working with a :doc:`usertype<usertype>`'s metatable defined by Sol:
|
|
|
|
.. literalinclude:: ../../../examples/metatable_key_low_level.cpp
|
|
:caption: messing with metatables
|
|
:linenos:
|