Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0e10bcf69d |
@@ -32,6 +32,13 @@ class HIDDEN sinqAxis : public asynMotorAxis {
|
|||||||
*/
|
*/
|
||||||
~sinqAxis();
|
~sinqAxis();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Delete the copy and copy assignment constructors, because this
|
||||||
|
* class should not be copied (it is tied to hardware!)
|
||||||
|
*/
|
||||||
|
sinqAxis(const sinqAxis &) = delete;
|
||||||
|
sinqAxis &operator=(const sinqAxis &) = delete;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Check if a poll should be performed. If yes, call `forcedPoll`.
|
* @brief Check if a poll should be performed. If yes, call `forcedPoll`.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -58,6 +58,13 @@ class HIDDEN sinqController : public asynMotorController {
|
|||||||
*/
|
*/
|
||||||
virtual ~sinqController(void);
|
virtual ~sinqController(void);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Delete the copy and copy assignment constructors, because this
|
||||||
|
* class should not be copied (it is tied to hardware!)
|
||||||
|
*/
|
||||||
|
sinqController(const sinqController &) = delete;
|
||||||
|
sinqController &operator=(const sinqController &) = delete;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Overloaded function of asynMotorController
|
* @brief Overloaded function of asynMotorController
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user