开发者

Generic visitor using variadic templates

开发者 https://www.devze.com 2023-03-15 18:15 出处:网络
I\'ve have small code bellow: #include <iostream> #include <boost/variant.hpp> #include <functional>

I've have small code bellow:

#include <iostream>
#include <boost/variant.hpp>
#include <functional>

struct Test
{
        void one() const { std::cout << "one\n"; }
        void two(int i) const { std::cout << "two\n"; }
};

struct TestVisitor : public boost::static_visitor<>
{
        template<class ... Args>
        void operator()( const std::function<void (Args...)>& func) const
        {
            //func(args...);
        }
};

int main() 
{ 
    Test test;
    std::function<void ()> f = std::bind(&Test::one, &test);  

    typedef boost::variant< std::function<void ()>, std::function<void (int)> > fvariant;
    fvariant var = f;
    boost::apply_visitor( TestVisitor(), var );

    return 0;
}

It would be nice to call function object "func" with variable number of arguments ( commented line ). Do you know the easiest way to implement that?

EDIT: TestVisitor is not final. Feel free 开发者_如何学Goto modify it in order to apply parameter pack of Args... to std::function call.


This answer may help you for applying a function to a parameter pack

How do I expand a tuple into variadic template function's arguments?


I posted a lot on this on my blog, I played around with it for a day or two, if you need more, I can post my code: Variadic Template Treatise

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号