| 100 | }; |
| 101 | |
| 102 | FeedbackXBOBT::FeedbackXBOBT() : fRefCount(1), EffectIndex(1), Stopped(true), |
| 103 | Paused(false), PausedTime(0), LastTime(0), Gain(10000), PrvLeftLevel(0), |
| 104 | PrvRightLevel(0), Actuator(true), Manual(false) |
| 105 | { |
| 106 | EffectList = FeedbackXBOEffectVector(); |
| 107 | |
| 108 | iIOCFPlugInInterface.pseudoVTable = (IUnknownVTbl *) &functionMapXBOBT_IOCFPlugInInterface; |
| 109 | iIOCFPlugInInterface.obj = this; |
| 110 | |
| 111 | iIOForceFeedbackDeviceInterface.pseudoVTable = (IUnknownVTbl *) &functionMapXBOBT_IOForceFeedbackDeviceInterface; |
| 112 | iIOForceFeedbackDeviceInterface.obj = this; |
| 113 | |
| 114 | FactoryID = BTFFPLUGINTERFACE; |
| 115 | CFRetain(FactoryID); |
| 116 | CFPlugInAddInstanceForFactory(FactoryID); |
| 117 | } |
| 118 | |
| 119 | FeedbackXBOBT::~FeedbackXBOBT() |
| 120 | { |
nothing calls this directly
no outgoing calls
no test coverage detected