source: experimental/osgVisual-GUI/Sichtsystem-GUI/visualGUI_externalLink.h @ 236

Last change on this file since 236 was 236, checked in by Torben Dannhauer, 13 years ago
File size: 520 bytes
Line 
1#ifndef VISUALGUI_EXTERNALLINK_H
2#define VISUALGUI_EXTERNALLINK_H
3
4#include <QObject>
5#include <QDebug>
6#include "visualGUI_externalDataContainer.h"
7
8class visualGUI_externalLink : public QObject
9{
10        Q_OBJECT
11
12public:
13        visualGUI_externalLink(QObject *parent);
14        ~visualGUI_externalLink();
15
16        virtual bool InitExternalLink() = 0;
17        virtual void processExternalLink() = 0;
18
19protected:
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.