123456789101112131415161718192021 |
- #include <QDebug>
- #include "example.h"
- Example::Example(QObject *parent)
- : QObject(parent)
- {
- }
- Example::~Example()
- {
- }
- void Example::setEnvironment(QMainWindow *parentWindow, QWebFrame *webFrame)
- {
- }
- QString Example::getValue() const
- {
- return "This is an example Hybrid plug-in";
- }
|