LAPTOP-SNT8I5JK\Boounion
2025-05-10 0b32b5ca45370256da5bbfa8ca43014890258997
SourceCode/Bond/Servo/CStep.cpp
@@ -6,6 +6,7 @@
   CStep::CStep()
   {
      m_nID = 0;
      m_pCclink = nullptr;
      InitializeCriticalSection(&m_criticalSection);
   }
@@ -28,6 +29,16 @@
   CEquipment* CStep::getEquipment()
   {
      return m_pEquipment;
   }
   void CStep::setID(int id)
   {
      m_nID = id;
   }
   int CStep::getID()
   {
      return m_nID;
   }
   void CStep::setName(const char* pszName)
@@ -59,6 +70,18 @@
   }
   void CStep::setProp(const char* pszKey, void* pValue)
   {
      m_mapProp[pszKey] = pValue;
   }
   void* CStep::getProp(const char* pszKey)
   {
      auto iter = m_mapProp.find(pszKey);
      if (iter == m_mapProp.end()) return nullptr;
      return iter->second;
   }
   void CStep::convertString(const char* pszBuffer, int size, std::string& strOut)
   {
      strOut.clear();