Rev | Line | |
---|
[236] | 1 | #ifndef VISUALGUI_EXTERNALLINK_H |
---|
| 2 | #define VISUALGUI_EXTERNALLINK_H |
---|
| 3 | |
---|
| 4 | #include <QObject> |
---|
| 5 | #include <QDebug> |
---|
| 6 | #include "visualGUI_externalDataContainer.h" |
---|
| 7 | |
---|
| 8 | class visualGUI_externalLink : public QObject |
---|
| 9 | { |
---|
| 10 | Q_OBJECT |
---|
| 11 | |
---|
| 12 | public: |
---|
| 13 | visualGUI_externalLink(QObject *parent); |
---|
| 14 | ~visualGUI_externalLink(); |
---|
| 15 | |
---|
| 16 | virtual bool InitExternalLink() = 0; |
---|
| 17 | virtual void processExternalLink() = 0; |
---|
| 18 | |
---|
| 19 | protected: |
---|
| 20 | bool initialized; |
---|
| 21 | visualGUI_externalDataContainer* externalDataContainer; |
---|
| 22 | |
---|
| 23 | }; |
---|
| 24 | |
---|
| 25 | #endif // VISUALGUI_EXTERNALLINK_H |
---|
Note: See
TracBrowser
for help on using the repository browser.