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

Last change on this file since 236 was 236, checked in by Torben Dannhauer, 13 years ago
File size: 474 bytes
Line 
1#ifndef VISUALGUI_EXTERNALDATACONTAINER_H
2#define VISUALGUI_EXTERNALDATACONTAINER_H
3
4#include <QObject>
5
6class visualGUI_externalDataContainer : public QObject
7{
8        Q_OBJECT
9
10public:
11        visualGUI_externalDataContainer(QObject *parent);
12        ~visualGUI_externalDataContainer();
13
14        double lat;
15        double lon;
16        double alt;
17        double bank_phi;
18        double pitch_theta;
19        double azimuth_psi;
20        double idToTrack;
21
22private:
23       
24};
25
26#endif // VISUALGUI_EXTERNALDATACONTAINER_H
Note: See TracBrowser for help on using the repository browser.