qmca  0.0.20
pulseanalysergroup.h
Go to the documentation of this file.
1 #ifndef PULSEANALYSERGROUP_H
2 #define PULSEANALYSERGROUP_H
3 
4 #include <QObject>
5 #include <QList>
6 
8 
9 class PulseAnalyserGroup : public QObject
10 {
11  Q_OBJECT;
12 
13  public:
14  PulseAnalyserGroup(QObject *parent);
15  virtual ~PulseAnalyserGroup();
16 
17  void append(EpicsPulseAnalyser *amp);
18 
19  private:
20  QList<EpicsPulseAnalyser*> m_PulseAnalyserList;
21 };
22 
23 #endif
QList< EpicsPulseAnalyser * > m_PulseAnalyserList
void append(EpicsPulseAnalyser *amp)
PulseAnalyserGroup(QObject *parent)