Giter Club home page Giter Club logo

Comments (2)

rpatters1 avatar rpatters1 commented on June 12, 2024

Would it be possible to add a version of REFL_FUNC that takes a function pointer? That seems like the most efficient way to handle overloads. Usage would look something like:

REFL_FUNC_PTR(MyMethod, static_cast<const char*(*)(int, bool)>(&MyClass::MyMethod))

from refl-cpp.

rpatters1 avatar rpatters1 commented on June 12, 2024

EDIT: Success! It works with refl::descriptor::get_attribute<func_ptr>. The code as modified below works.

template <typename Func>
struct func_ptr : refl::attr::usage::member
{
   Func func;
   constexpr func_ptr(Func func) : func(func) {}
  
};

REFL_AUTO(type(Foo), func(getPtr, func_ptr(static_cast<char*(foo::*)()>(&getPtr))))

// and in the central handler routine:

   constexpr auto type = refl::reflect<tinyxml2::XMLNode>();
   constexpr auto members = get_members(type);
   for_each_unordered(members, [&](auto member)
   {
      if constexpr(refl::descriptor::has_attribute<func_ptr>(member))
      {
         const auto fptr = refl::descriptor::get_attribute<func_ptr>(member).func;
      }
      else
      {
         const auto fptr = refl::descriptor::get_pointer(member);
      }
   });

It also works if you want to use a proxy function instead of the class member. Unfortunately the REFL_FUNC macro does not appear to be compatible with lambdas or std::function, but that's a small quibble.

from refl-cpp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.