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