userlibandfileserver/fileserver/shostmassstorage/server/protocol/include/cmassstoragefsm.inl
changeset 297 b2826f67641f
parent 0 a41df078684a
equal deleted inserted replaced
296:94f2adf59133 297:b2826f67641f
    14 //
    14 //
    15 
    15 
    16 /**
    16 /**
    17  @file
    17  @file
    18  @internalTechnology
    18  @internalTechnology
    19  
    19 
    20  Sets the StateId to be entered next time the FSM is called.
    20  Sets the StateId to be entered next time the FSM is called.
    21  
    21 
    22  @param aStateId The State ID
    22  @param aStateId The State ID
    23 */
    23 */
    24 inline void CMassStorageFsm::SetState(TMassStorageState::TStateId aStateId)
    24 inline void CMassStorageFsm::SetState(TMassStorageState::TStateId aStateId)
    25     {
    25     {
    26     __HOSTPRINT1(_L("CMassStorage::SetState[%d]"), aStateId);
       
    27     iState = iStateTable[aStateId];
    26     iState = iStateTable[aStateId];
    28     }
    27     }
    29 
    28 
    30 
    29 
    31 /**
    30 /**