12345678910111213141516171819202122232425262728293031323334 |
- #pragma once
- #include "CEventBase.h"
- typedef struct
- {
- UINT nCurrentBondDieNum;
- UINT nBondDieTotal;
- UINT nBondDieNumByPoint;
- } THREAD_BOND_INFO_STRUCT;
- class CEventAutoBondStart :
- public CEventBase
- {
- private:
- UINT m_nCurrBondDieIndex;
- UINT m_nCurrRightDieIndex;
- UINT m_nCurrLeftDieIndex;
- UINT m_nBondPcbTotal = 0;
- LONG Action();
- public:
- CEventAutoBondStart();
- };
|