LAPTOP-SNT8I5JK\Boounion
2025-03-19 f631abac11b6d7c8091ed28b838a5d1f50e24825
SourceCode/Bond/Servo/CPin.cpp
@@ -112,19 +112,19 @@
      return 0;
   }
   int CPin::sendSample(CSample* pSample)
   int CPin::sendIntent(CIntent* pIntent)
   {
      if (m_pConnectedPin != NULL) {
         m_pConnectedPin->recvSample(pSample);
         m_pConnectedPin->recvIntent(pIntent);
      }
      return 0;
   }
   int CPin::recvSample(CSample* pSample)
   int CPin::recvIntent(CIntent* pIntent)
   {
      assert(m_pEquipment);
      m_pEquipment->recvSample(this, pSample);
      m_pEquipment->recvIntent(this, pIntent);
      return 0;
   }
}