Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6692625
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T05:53:21+00:00 2026-05-26T05:53:21+00:00

We have written a large library functions whose prototypes mostly look like: void my_fun(

  • 0

We have written a large library functions whose prototypes mostly look like:

void my_fun(
  const in_class & in_param_1, 
  const in_class & in_param_2,
  const in_class & in_param_3,
  out_class & out_param);

Is there a generic way to wrap these functions so that the following is equivalent (assuming out_param is only written to in my_fun):

out_class my_out;
my_fun(my_in1,my_in2,my_in3,my_out);

and

out_class my_out = generic_wrapper(&my_fun,my_in1,my_in2,my_in3);

How could one write such a generic_wrapper? If this is possible it also possible to write it so that the number of input parameters is variable, so I could use it say with my_fun2 that perhaps takes 4 in_param_’s?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T05:53:21+00:00Added an answer on May 26, 2026 at 5:53 am

    Consider all cases:

    template<class T1, class Out>
    Out generic_wrapper(void (*f)(const T1 &, Out &), const T1 & t1) { 
        Out out; 
        f(t1,out); 
        return out;
    }
    
    template<class T1, class T2, class Out>
    Out generic_wrapper(void (*f)(const T1 &, const T2 &, Out &), const T1 & t1, const T1 & t2) { 
        Out out; 
        f(t1,t2,out); 
        return out;
    }
    
    // .....
    
    template<class T1, class T2, class T3, class T4, class T5, class Out>
    Out generic_wrapper(void (*f)(const T1 &, const T2 &, const T3 &, const T4 &, const T5 &, Out &), const T1 & t1, const T1 & t2, const T3 & t3, const T4 & t4, const T5 & t5) { 
        Out out; 
        f(t1,t2,t3,t4,t5,out); 
        return out;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written a program in C to parse large XML files and then
I have written a simple C++ shell program to parse large XML files and
I have a large module written in JS which uses Canvas to draw and
I have a fairly large program written in C. It spans several files, and
I have a large query (not written by me, but I'm making some modifications).
I have a rather large (freeware) project written with Delphi 2007 which is using
We have a rather large and complex application written in Java which is running
I have a Linux app (written in C) that allocates large amount of memory
I have a very large (~6GB) SVN repository, for which I've written a batch
I have a large system written in a mixture of C++, Java, Python. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.