usbengines/usbotgwatcher/src/cusbstate.cpp
changeset 1 705ec7b86991
parent 0 1e05558e2206
child 5 7068aba64af5
equal deleted inserted replaced
0:1e05558e2206 1:705ec7b86991
    40 
    40 
    41 // ---------------------------------------------------------------------------
    41 // ---------------------------------------------------------------------------
    42 // 
    42 // 
    43 // ---------------------------------------------------------------------------
    43 // ---------------------------------------------------------------------------
    44 //
    44 //
       
    45 CUsbState* CUsbState::NewL(CUsbOtgWatcher* aWatcher)
       
    46     {
       
    47     CUsbState* self = new (ELeave) CUsbState(aWatcher);
       
    48     CleanupStack::PushL(self);
       
    49     self->ConstructL();
       
    50     CleanupStack::Pop(self);
       
    51     return self;
       
    52     }
       
    53 
       
    54 // ---------------------------------------------------------------------------
       
    55 // 
       
    56 // ---------------------------------------------------------------------------
       
    57 //
       
    58 void CUsbState::ConstructL()
       
    59     {
       
    60 
       
    61     }
       
    62 
       
    63 // ---------------------------------------------------------------------------
       
    64 // 
       
    65 // ---------------------------------------------------------------------------
       
    66 //
       
    67 TUsbStateIds CUsbState::Id()
       
    68     {
       
    69     return EUsbStateUndefined;
       
    70     }
       
    71 
       
    72 // ---------------------------------------------------------------------------
       
    73 // 
       
    74 // ---------------------------------------------------------------------------
       
    75 //
    45 void CUsbState::JustAdvancedToThisStateL()
    76 void CUsbState::JustAdvancedToThisStateL()
    46     {
    77     {
    47     }
    78     }
    48 
    79 
    49 // ---------------------------------------------------------------------------
    80 // ---------------------------------------------------------------------------