SourceCode/Bond/Servo/CStep.h
@@ -8,12 +8,6 @@
#define STEP_EVENT_READDATA         0x01
#define STEP_EVENT_COMPLETE         0x02
   typedef std::function<void(void* pStep, int code, void* pData)> ONSTEPEVENT;
   typedef struct _StepListener
   {
      ONSTEPEVENT         onEvent;
   } StepListener;
   class CEquipment;
   class CStep
   {
@@ -22,7 +16,6 @@
      virtual ~CStep();
   public:
      void setListener(StepListener listener);
      void setCcLink(CCCLinkIEControl* pCcLink);
      void setEquipment(CEquipment* pEquipment);
      CEquipment* getEquipment();
@@ -39,7 +32,6 @@
      void convertString(const char* pszBuffer, int size, std::string& strOut);
   protected:
      StepListener m_listener;
      StationIdentifier m_station;
      std::string m_strName;
      CEquipment* m_pEquipment;