C++ Code:
Class foo
{
... bool write (const QString §ion,
const QString &entry,
int value); int read (const QString §ion,
const QString &entry,
int value); bool write (const QString §ion,
const QString &entry,
double value); double read (const QString §ion,
const QString &entry,
double value);
... }
sip code:
class foo
{
... bool write (const QString&,
const QString&,
int); int read (const QString&,
const QString&,
int ); bool write (const QString&,
const QString&,
double ); double read (const QString&,
const QString&,
double );
... }
Is it possible to conversion C++'s overloaded method in SIP?
_______________________________________________ PyKDE mailing list [EMAIL PROTECTED] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde
