Merge branch '0.8' to sync with v0.8 release.
[luabind.git] / luabind / detail / overload_rep_base.hpp
blob774461f0d27987fa0e5f21f610f2ba7fc68669ce
1 // Copyright (c) 2003 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.
23 #ifndef LUABIND_OVERLOAD_REP_BASE_HPP_INCLUDED
24 #define LUABIND_OVERLOAD_REP_BASE_HPP_INCLUDED
26 #include <luabind/config.hpp>
27 #include <boost/function/function1.hpp>
29 struct lua_State;
31 namespace luabind { namespace detail
33 // this class represents a specific overload of a member-function.
34 struct overload_rep_base
36 #if !defined(NDEBUG) && !defined(LUABIND_NO_ERROR_CHECKING)
37 overload_rep_base(): m_get_signature_fun(0), m_match_fun(0), m_arity(-1) {}
38 #else
39 overload_rep_base(): m_match_fun(0), m_arity(-1) {}
40 #endif
42 typedef boost::function1<int, lua_State*> match_fun_t;
43 typedef void(*get_sig_ptr)(lua_State*, std::string&);
45 inline int match(lua_State* L, int num_params) const
47 if (num_params != m_arity) return -1;
48 return m_match_fun(L);
51 inline void set_match_fun(match_fun_t const& fn)
53 m_match_fun = fn;
56 #ifndef LUABIND_NO_ERROR_CHECKING
57 inline void get_signature(lua_State* L, std::string& s) const
59 m_get_signature_fun(L, s);
62 inline void set_sig_fun(get_sig_ptr f)
64 m_get_signature_fun = f;
66 #endif
68 protected:
70 #ifndef LUABIND_NO_ERROR_CHECKING
71 get_sig_ptr m_get_signature_fun;
72 #endif
74 // match_ptr m_match_fun;
75 match_fun_t m_match_fun;
76 int m_arity;
79 }} // namespace luabind::detail
81 #endif // LUABIND_OVERLOAD_REP_BASE_HPP_INCLUDED