Added destructor for controller

This commit is contained in:
2025-06-10 14:58:59 +02:00
parent 08bd303ab3
commit 7906b788f8
3 changed files with 3 additions and 2 deletions

View File

@@ -24,6 +24,7 @@ class turboPmacAxis : public sinqAxis {
/** /**
* @brief Destroy the turboPmacAxis * @brief Destroy the turboPmacAxis
* *
* This destructor is necessary in order to use the PIMPL idiom.
*/ */
virtual ~turboPmacAxis(); virtual ~turboPmacAxis();

View File

@@ -179,7 +179,7 @@ turboPmacController::turboPmacController(const char *portName,
} }
} }
turboPmacController::~turboPmacController(void) {} turboPmacController::~turboPmacController() {}
/* /*
Access one of the axes of the controller via the axis adress stored in asynUser. Access one of the axes of the controller via the axis adress stored in asynUser.

View File

@@ -41,7 +41,7 @@ class turboPmacController : public sinqController {
* destructor needs to be provided for handling turboPmacControllerImpl. * destructor needs to be provided for handling turboPmacControllerImpl.
* *
*/ */
~turboPmacController(void) {} virtual ~turboPmacController();
/** /**
* @brief Get the axis object * @brief Get the axis object