radioengine/utils/src/cradiorepositoryentitybase.cpp
changeset 28 075425b8d9a4
parent 13 46974bebc798
equal deleted inserted replaced
24:6df133bd92e1 28:075425b8d9a4
    14 * Description:
    14 * Description:
    15 *
    15 *
    16 */
    16 */
    17 
    17 
    18 #include "cradiorepositoryentitybase.h"
    18 #include "cradiorepositoryentitybase.h"
       
    19 #include "cradioenginelogger.h"
    19 
    20 
    20 // ======== MEMBER FUNCTIONS ========
    21 // ======== MEMBER FUNCTIONS ========
    21 
    22 
    22 // ---------------------------------------------------------------------------
    23 // ---------------------------------------------------------------------------
    23 //
    24 //
    24 // ---------------------------------------------------------------------------
    25 // ---------------------------------------------------------------------------
    25 //
    26 //
    26 CRadioRepositoryEntityBase::CRadioRepositoryEntityBase( const TUid& aUid,
    27 EXPORT_C CRadioRepositoryEntityBase::CRadioRepositoryEntityBase( const TUid& aUid,
    27                                                         TUint32 aKey,
    28                                                         TUint32 aKey,
    28                                                         MRadioRepositoryEntityObserver& aObserver,
    29                                                         MRadioRepositoryEntityObserver& aObserver,
    29                                                         CActive::TPriority aPriority )
    30                                                         CActive::TPriority aPriority )
    30     : CActive( aPriority ), iObserver( aObserver ), iUid( aUid ), iKey( aKey )
    31     : CActive( aPriority ), iObserver( aObserver ), iUid( aUid ), iKey( aKey )
    31     {
    32     {
       
    33     LEVEL3( LOG_METHOD_AUTO );
    32     }
    34     }
    33 
    35 
    34 // ---------------------------------------------------------------------------
    36 // ---------------------------------------------------------------------------
    35 //
    37 //
    36 // ---------------------------------------------------------------------------
    38 // ---------------------------------------------------------------------------
    37 //
    39 //
    38 CRadioRepositoryEntityBase::~CRadioRepositoryEntityBase()
    40 EXPORT_C CRadioRepositoryEntityBase::~CRadioRepositoryEntityBase()
    39     {
    41     {
       
    42     LEVEL3( LOG_METHOD_AUTO );
    40     }
    43     }
    41 
    44 
    42 // ---------------------------------------------------------------------------
    45 // ---------------------------------------------------------------------------
    43 // Returns the UID of this entity.
    46 // Returns the UID of this entity.
    44 // ---------------------------------------------------------------------------
    47 // ---------------------------------------------------------------------------
    52 // Returns the key of this entity.
    55 // Returns the key of this entity.
    53 // ---------------------------------------------------------------------------
    56 // ---------------------------------------------------------------------------
    54 //
    57 //
    55 TUint32 CRadioRepositoryEntityBase::Key() const
    58 TUint32 CRadioRepositoryEntityBase::Key() const
    56     {
    59     {
       
    60     LEVEL3( LOG_METHOD_AUTO );
    57     return iKey;
    61     return iKey;
    58     }
    62     }