Added destructors for the classes in order to use the PIMPL idiom with

uniqe_ptr
This commit is contained in:
2025-05-23 09:38:41 +02:00
parent 83aa437b6b
commit cd7cc75eb7
4 changed files with 17 additions and 0 deletions

View File

@@ -24,6 +24,13 @@ class epicsShareClass sinqAxis : public asynMotorAxis {
*/
sinqAxis(class sinqController *pC_, int axisNo);
/**
* @brief Destroy the sinqAxis object
*
* This destructor is necessary in order to use the PIMPL idiom.
*/
~sinqAxis();
/**
* @brief Perform some standardized operations before and after the concrete
`doPoll` implementation.