mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
9e31119f16
Closes #78 Closes #77 Closes #76 Closes #75
14 lines
446 B
ReStructuredText
14 lines
446 B
ReStructuredText
userdata
|
|
========
|
|
reference to a userdata
|
|
-----------------------
|
|
|
|
.. code-block:: cpp
|
|
:caption: (light\_)userdata reference
|
|
|
|
class userdata : public reference;
|
|
|
|
class light_userdata : public reference;
|
|
|
|
These type is meant to hold a reference to a (light) userdata from Lua and make it easy to push an existing userdata onto the stack. It is essentially identical to :doc:`reference<reference>` in every way, just with a definitive C++ type.
|