#ifndef __OAPPPLUGIN_H #define __OAPPPLUGIN_H #include "oappinterface.h" #include #include class QWidget; class OAppPlugin : public OAppInterface { public: OAppPlugin(OAppPos pos = midPos); OAppPlugin(QWidget *widget, OAppPos pos = midPos); virtual ~OAppPlugin(); QList widgets(); OAppPos position() const; #ifndef QT_NO_COMPONENT QRESULT queryInterface( const QUuid &uuid, QUnknownInterface **iface ); Q_REFCOUNT #endif private: QList m_widgets; OAppPos m_position; }; #endif // __OAPPPLUGIN_H