/luabind/luabind/detail/find_best_match.hpp

http://luaboost.googlecode.com/ · C++ Header · 59 lines · 16 code · 14 blank · 29 comment · 0 complexity · 69995076c3b53173dc164add6e2bbe2a MD5 · raw file

  1. // Copyright (c) 2003 Daniel Wallin and Arvid Norberg
  2. // Permission is hereby granted, free of charge, to any person obtaining a
  3. // copy of this software and associated documentation files (the "Software"),
  4. // to deal in the Software without restriction, including without limitation
  5. // the rights to use, copy, modify, merge, publish, distribute, sublicense,
  6. // and/or sell copies of the Software, and to permit persons to whom the
  7. // Software is furnished to do so, subject to the following conditions:
  8. // The above copyright notice and this permission notice shall be included
  9. // in all copies or substantial portions of the Software.
  10. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
  11. // ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  12. // TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  13. // PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
  14. // SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
  15. // ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  16. // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  17. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
  18. // OR OTHER DEALINGS IN THE SOFTWARE.
  19. #ifndef LUABIND_FIND_BEST_MATCH_HPP_INCLUDED
  20. #define LUABIND_FIND_BEST_MATCH_HPP_INCLUDED
  21. #include <luabind/config.hpp>
  22. #include <boost/limits.hpp>
  23. namespace luabind { namespace detail
  24. {
  25. // expects that a match function can be accesed through the iterator
  26. // as int match_fun(lua_State*)
  27. // returns true if it found a match better than the given. If it finds a
  28. // better match match_index is updated to contain the new index to the best
  29. // match (this index now refers to the list given to this call).
  30. // orep_size is supposed to tell the size of the actual structures that
  31. // start and end points to ambiguous is set to true if the match was
  32. // ambiguous min_match should be initialized to the currently best match
  33. // value (the number of implicit casts to get a perfect match). If there
  34. // are no previous matches, set min_match to
  35. // std::numeric_limits<int>::max()
  36. LUABIND_API bool find_best_match(lua_State* L
  37. , detail::overload_rep_base const* start, int num_overloads
  38. , size_t orep_size, bool& ambiguous, int& min_match, int& match_index
  39. , int num_params);
  40. LUABIND_API void find_exact_match(lua_State* L
  41. , detail::overload_rep_base const* start, int num_overloads
  42. , size_t orep_size, int cmp_match, int num_params
  43. , std::vector<overload_rep_base const*>& dest);
  44. }}
  45. #endif // LUABIND_FIND_BEST_MATCH_HPP_INCLUDED