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