View Single Post
  #1 (permalink)  
Old 08-13-2003
Mr.Freeze Mr.Freeze is offline
Registered User
 
 
Join Date: Aug 2003
Location: Germany
Posts: 23
Constructor and Default-Parameter

Hello!

I'm a beginner in using ICE. Here a little code snippet from my class:

class Bank
{
Bank(const string bankname, int contextKey = -1);

int readFromDB(int contextKey = -1);
...
}

How can I create an Ice-Definition, which contains a Constructor and a default parameter within the function call.

Thanks.
Reply With Quote