1 // Copyright (c) 2004 Daniel Wallin and Arvid Norberg
3 // Permission is hereby granted, free of charge, to any person obtaining a
4 // copy of this software and associated documentation files (the "Software"),
5 // to deal in the Software without restriction, including without limitation
6 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
7 // and/or sell copies of the Software, and to permit persons to whom the
8 // Software is furnished to do so, subject to the following conditions:
10 // The above copyright notice and this permission notice shall be included
11 // in all copies or substantial portions of the Software.
13 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
14 // ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
15 // TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
16 // PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
17 // SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
18 // ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
19 // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
21 // OR OTHER DEALINGS IN THE SOFTWARE.
25 #include <luabind/luabind.hpp>
27 using namespace luabind
;
31 virtual ~abstract() {}
32 virtual std::string
hello() = 0;
35 COUNTER_GUARD(abstract
);
37 struct concrete
: abstract
45 struct abstract_wrap
: abstract
, wrap_base
49 return call_member
<std::string
>(this, "hello");
52 static void default_hello(abstract
const&)
54 throw std::runtime_error("abstract function");
58 std::string
call_hello(abstract
& a
)
63 abstract
& return_abstract_ref()
69 abstract
const& return_const_abstract_ref()
76 void test_main(lua_State
* L
)
80 class_
<abstract
, abstract_wrap
>("abstract")
82 .def("hello", &abstract::hello
),
84 def("call_hello", &call_hello
),
85 def("return_abstract_ref", &return_abstract_ref
),
86 def("return_const_abstract_ref", &return_const_abstract_ref
)
92 , "std::runtime_error: 'Attempt to call nonexistent function'");
96 , "std::runtime_error: 'Attempt to call nonexistent function'");
99 "class 'concrete' (abstract)\n"
100 " function concrete:__init()\n"
101 " abstract.__init(self)\n"
104 " function concrete:hello()\n"
105 " return 'hello from lua'\n"
112 DOSTRING(L
, "call_hello(y)\n");