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();
 }
link|improve this question

80% accept rate
What's the question? – Kerrek SB Dec 24 '11 at 15:39
already solved by myself – rodi Jan 31 at 16:31
Should it be closed or deleted then? You can add a moderator flag and request for the question to be deleted. – Kerrek SB Jan 31 at 16:50
feedback

closed as too localized by Kerrek SB, casperOne Jan 31 at 22:42

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.