phoneapp/phoneuiutils/src/tphonecmdparamtranseffect.cpp
branchRCL_3
changeset 25 91c2fb4b78df
parent 0 5f000ab63145
child 61 41a7f70b3818
equal deleted inserted replaced
19:544e34b3255a 25:91c2fb4b78df
    27 // C++ default constructor can NOT contain any code, that
    27 // C++ default constructor can NOT contain any code, that
    28 // might leave.
    28 // might leave.
    29 // -----------------------------------------------------------------------------
    29 // -----------------------------------------------------------------------------
    30 //
    30 //
    31 EXPORT_C TPhoneCmdParamTransEffect::TPhoneCmdParamTransEffect():
    31 EXPORT_C TPhoneCmdParamTransEffect::TPhoneCmdParamTransEffect():
    32     iType( EPhoneTransEffectNone )
    32     iType( EPhoneTransEffectNone ),
       
    33     iAppUid( KNullUid )
    33     {
    34     {
    34     }
    35     }
    35 
    36 
    36 // ---------------------------------------------------------
    37 // ---------------------------------------------------------
    37 // TPhoneCmdParamTransEffect::SetType
    38 // TPhoneCmdParamTransEffect::SetType
    42 EXPORT_C void TPhoneCmdParamTransEffect::SetType( TPhoneTransEffectType aType )
    43 EXPORT_C void TPhoneCmdParamTransEffect::SetType( TPhoneTransEffectType aType )
    43    {
    44    {
    44    iType = aType;   
    45    iType = aType;   
    45    }
    46    }
    46 
    47 
    47  
    48 // ---------------------------------------------------------
       
    49 // TPhoneCmdParamTransEffect::SetAppUid
       
    50 // Sets applicaiton uid.
       
    51 // ---------------------------------------------------------
       
    52 //
       
    53 EXPORT_C void TPhoneCmdParamTransEffect::SetAppUid( const TUid& aAppUid )
       
    54    {
       
    55    iAppUid = aAppUid;
       
    56    }
       
    57 
    48 // ---------------------------------------------------------
    58 // ---------------------------------------------------------
    49 // TPhoneCmdParamTransEffect::Type
    59 // TPhoneCmdParamTransEffect::Type
    50 // Returns the note type
    60 // Returns the note type
    51 // (other items were commented in a header).
    61 // (other items were commented in a header).
    52 // ---------------------------------------------------------
    62 // ---------------------------------------------------------
    54 EXPORT_C TPhoneTransEffectType TPhoneCmdParamTransEffect::Type() const
    64 EXPORT_C TPhoneTransEffectType TPhoneCmdParamTransEffect::Type() const
    55    {
    65    {
    56    return iType;
    66    return iType;
    57    }
    67    }
    58   
    68   
       
    69 // ---------------------------------------------------------
       
    70 // TPhoneCmdParamTransEffect::AppUid
       
    71 // Returns application uid
       
    72 // ---------------------------------------------------------
       
    73 //
       
    74 EXPORT_C TUid TPhoneCmdParamTransEffect::AppUid() const
       
    75    {
       
    76    return iAppUid;
       
    77    }
       
    78 
    59 //  End of File  
    79 //  End of File