Added destructor for detectorTowerController
This commit is contained in:
@ -106,6 +106,8 @@ detectorTowerController::detectorTowerController(
|
||||
}
|
||||
}
|
||||
|
||||
detectorTowerController::~detectorTowerController() {}
|
||||
|
||||
asynStatus detectorTowerController::readInt32(asynUser *pasynUser,
|
||||
epicsInt32 *value) {
|
||||
|
||||
|
@ -35,6 +35,8 @@ class detectorTowerController : public turboPmacController {
|
||||
int numAxes, double movingPollPeriod,
|
||||
double idlePollPeriod, double comTimeout);
|
||||
|
||||
virtual ~detectorTowerController();
|
||||
|
||||
/**
|
||||
* @brief Overloaded function of turboPmacController
|
||||
*
|
||||
|
@ -19,10 +19,6 @@ class detectorTowerLiftAxis : public turboPmacAxis {
|
||||
detectorTowerLiftAxis(detectorTowerController *pController, int axisNo,
|
||||
detectorTowerAngleAxis *angleAxis);
|
||||
|
||||
/**
|
||||
* @brief Destroy the turboPmacAxis
|
||||
*
|
||||
*/
|
||||
virtual ~detectorTowerLiftAxis();
|
||||
|
||||
/**
|
||||
|
@ -155,7 +155,7 @@ asynStatus detectorTowerSupportAxis::poll(bool *moving) {
|
||||
__LINE__);
|
||||
}
|
||||
}
|
||||
wasMoving_ = *moving;
|
||||
setWasMoving(*moving);
|
||||
return status;
|
||||
}
|
||||
|
||||
|
@ -24,10 +24,6 @@ class detectorTowerSupportAxis : public turboPmacAxis {
|
||||
detectorTowerSupportAxis(detectorTowerController *pController, int axisNo,
|
||||
detectorTowerAngleAxis *angleAxis);
|
||||
|
||||
/**
|
||||
* @brief Destroy the detectorTowerSupportAxis
|
||||
*
|
||||
*/
|
||||
virtual ~detectorTowerSupportAxis();
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user