os/mm/mmlibs/mmfw/src/ControllerFramework/mmfmatchdata.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // This contains internal class used by mmfcontroller framework
    15 // 
    16 //
    17 
    18 #ifndef MMFMATCHDATA_H
    19 #define MMFMATCHDATA_H
    20 
    21 /**
    22 class used to hold both the Matching data and uri scheme 
    23 */
    24 
    25 class CMatchData; // declared here.
    26 
    27 NONSHARABLE_CLASS( CMatchData ): public CBase
    28 	{
    29 public:
    30 	static CMatchData* CreateL();
    31 	
    32 	void SetMatchDataL(const TDesC8& aMatchData);
    33 	
    34 	void SetMatchUriSchemeL(const TDesC8& aMatchUriScheme);
    35 	
    36 	~CMatchData();
    37 	
    38 	const TDesC8& MatchData() const;
    39 	const TDesC8& MatchUriScheme() const;
    40 	
    41 private:
    42 	HBufC8* iMatchData;
    43 	HBufC8* iMatchUriScheme;
    44 	};
    45   
    46 #endif  
    47