csxhelp/HelpEngine/src/CSXHHelpContentBase.cpp
branchRCL_3
changeset 5 d06b1526f62c
parent 0 1f04cf54edd8
equal deleted inserted replaced
1:27f5851bd5a5 5:d06b1526f62c
    31 EXPORT_C  TPtr CCSXHHelpContentBase::GetName() const
    31 EXPORT_C  TPtr CCSXHHelpContentBase::GetName() const
    32     {
    32     {
    33     return iName->Des();
    33     return iName->Des();
    34     }
    34     }
    35 
    35 
       
    36 TInt32 CCSXHHelpContentBase::Priority() const 
       
    37 	{
       
    38 	return iPriority;
       
    39 	}
       
    40 
    36 // ---------------------------------------------------------
    41 // ---------------------------------------------------------
    37 // Items commented in header.
    42 // Items commented in header.
    38 // ---------------------------------------------------------
    43 // ---------------------------------------------------------
    39 CCSXHHelpContentBase::CCSXHHelpContentBase(const TDesC& name) : iName(name.Alloc())
    44 CCSXHHelpContentBase::CCSXHHelpContentBase(const TDesC& name, const TInt32 aPriority) 
       
    45                       : iName(name.Alloc()), iPriority(aPriority)
    40     {//No implementation required
    46     {//No implementation required
    41     }
    47     }
    42 
    48 
    43 
    49