HI everybody,

i'm quite new to this and right now i'm having diffculties generating a 
C++ source file. I have a simple class and in the constructor I want to 
have an initialization list.

ex :

class ThreadAdapter
{
   void (* d_Func)(void*);
   void *d_Param_p;

 public:
    ThreadAdapter(void (* func)(void*), void *param) : d_Func(func), 
d_Param_p(param)
   {
   }
   void operator()() const
   {
      return d_Func(d_Param_p);
   }
};

How can I tell Rose (2002) to do that for me !?!?!?

Thanks in advance for any help.

Luc Bergeron.
************************************************************************
* Rose Forum is a public venue for ideas and discussions.
* For technical support, visit http://www.rational.com/support
*
* Post or Reply to: [EMAIL PROTECTED]
* Subscription Requests: [EMAIL PROTECTED]
* Archive of messages:
*    http://www.rational.com/support/usergroups/rose/rose_forum.jsp
* Other Requests: [EMAIL PROTECTED]
*
* To unsubscribe from the list, please send email
*    To: [EMAIL PROTECTED]
*    Subject: <BLANK>
*    Body: unsubscribe rose_forum
*************************************************************************

Reply via email to