qmca  0.0.20
powersupplygroup.cpp
Go to the documentation of this file.
1 #include "powersupplygroup.h"
2 #include "epicspowersupply.h"
3 
5  : QObject(parent)
6 {
7 }
8 
10 {
11  while (!m_PowerSupplyList.isEmpty()) {
12  delete m_PowerSupplyList.takeFirst();
13  }
14 }
15 
17 {
18  m_PowerSupplyList.append(hvps);
19 }
PowerSupplyGroup(QObject *parent)
void append(EpicsPowerSupply *hvps)
virtual ~PowerSupplyGroup()
QList< EpicsPowerSupply * > m_PowerSupplyList