I'd like to save a function to call it later. I wrote this code, but it gives me back many errors..
void myPrinter(const char* text){
printf("\n%s\n", text);
}
int main(){
char *someText="test";
boost::function functionWithSavedArgs = boost::bind(&myPrinter, someText);
functionWithSavedArgs();
}
EDIT: working solution
#include <boost/bind.hpp>
#include <boost/function.hpp>
void myPrinter(const char* text){
printf("\n%s\n", text);
}
int main(){
char *someText="test";
boost::function<void()> functionWithSavedArgs = boost::bind(&myPrinter, someText);
functionWithSavedArgs();
}