Developer documentation | Axl-2.5.1

axlInspectorToolGeneric.h
Go to the documentation of this file.
1 #ifndef AXLINSPECTORTOOLGENERIC_H
2 #define AXLINSPECTORTOOLGENERIC_H
3 
4 #include <QObject>
5 #include <QtGui>
6 
7 #include "axlGuiExport.h"
8 
9 class axlInspectorToolGenericPrivate;
11 class axlAbstractData;
12 
14 {
15  Q_OBJECT
16 
17 public:
18  axlInspectorToolGeneric(QString implementation, axlInspectorObjectController *control, QWidget *parent=0);
19  virtual ~axlInspectorToolGeneric(void);
20 
21 signals:
22  void dataSetFieldsChanged(QList<axlAbstractData *> dataSet, QString fieldName);
23  void dataInserted(axlAbstractData *data);
24 
25 public slots :
26  void runDataInserted(void);
27 
28 private:
29  axlInspectorToolGenericPrivate *d;
30 
31 };
32 
33 #endif // AXLINSPECTORTOOLGENERIC_H
#define AXLGUI_EXPORT
Definition: axlGuiExport2.h:15
Class axlAbstractData defines an API for all type of axel data.