PySide Bugzilla Closed for New Bugs

PySide is now a Qt Add-on and uses the Qt Project's JIRA Bug Tracker instead of this Bugzilla instance. This Bugzilla is left for reference purposes.

Bug 290 - fail to produce code to interface class
: fail to produce code to interface class
Status: CLOSED INVALID
Product: PySide
Classification: Unclassified
Component: Shiboken
: HEAD
: All All
: P5 normal
Assigned To: Marcelo Lira
:
:
:
  Show dependency treegraph
 
Reported: 2010-08-10 11:49 EEST by renato filho
Modified: 2010-09-10 19:26 EEST (History)
7 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description renato filho 2010-08-10 11:49:05 EEST
the generated code for the following class does not compile.

class M_EXPORT MAppletInstallationSourceInterface : public
MApplicationExtensionInterface
{
    Q_INTERFACES(MApplicationExtensionInterface)

public:
 /*!
  * Destructor.
  */
 virtual ~MAppletInstallationSourceInterface() {}

  /*!
   * Tells the extension about an implementation of the applet inventory
interface.
   *
   * \param installationSource Applet inventory interface for instantiating
applets
   */
  virtual void setMAppletInventoryInterface(MAppletInventoryInterface
&installationSource) = 0;
};
Comment 1 renato filho 2010-08-12 11:39:45 EEST
this interface need be declared as object-type because this have abstract
methods and is impossible to instantiate that.