From 4494eb14be2a95bcc6ab85833370a4533327d0f0 Mon Sep 17 00:00:00 2001 From: Keenan Lang Date: Tue, 12 Jul 2016 16:06:07 -0500 Subject: [PATCH] Switched motor status and statusChanged to be protected instead of private. --- motorApp/MotorSrc/asynMotorAxis.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/motorApp/MotorSrc/asynMotorAxis.h b/motorApp/MotorSrc/asynMotorAxis.h index 7cdc2544..fea0748c 100644 --- a/motorApp/MotorSrc/asynMotorAxis.h +++ b/motorApp/MotorSrc/asynMotorAxis.h @@ -72,10 +72,10 @@ class epicsShareClass asynMotorAxis { double *profileReadbacks_; /**< Array of readback positions for profile moves */ double *profileFollowingErrors_; /**< Array of following errors for profile moves */ int referencingMode_; - - private: MotorStatus status_; int statusChanged_; + + private: int referencingModeMove_; int wasMovingFlag_; int disableFlag_;