Guest User

Untitled

a guest
Mar 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. static void fn1(int* x, int* y);
  2. static void fn2(int* x, int* y, int* z);
  3. static void fn3(char* x, double y);
  4. ...
  5.  
  6. static void executeAlgorithm(
  7. vector<FN_PTR_TYPE> functionToExecute,
  8. map<FN_PTR_TYPE, FN_ARG_COLLECTION> args)
  9. {
  10. // for each function in 'functionToExecute',
  11. // get the appropriate arguments, and call the
  12. // function using those arguments
  13. }
Add Comment
Please, Sign In to add comment