os/ossrv/lowlevellibsandfws/pluginfw/Framework/inc/EComResolverParams.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/inc/EComResolverParams.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,70 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Definition of the TEComResolverParams class.
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef __ECOMRESOLVERPARAMS_H__
    1.22 +#define __ECOMRESOLVERPARAMS_H__
    1.23 +
    1.24 +#include <e32base.h>
    1.25 +
    1.26 +/**
    1.27 +Used to pass values to a Resolver to aid in the filtering of Interface 
    1.28 +Implementation plugins. These values are considered match characteristics used 
    1.29 +during resolution of these Interface Implementation. It is a class used
    1.30 +in the ECOM API provided by the REComSession class.
    1.31 +This class DOES NOT own the descriptor data iDataType points to and so it will 
    1.32 +not release the data on descruction. This is the responsibility of the user of 
    1.33 +this class.
    1.34 +
    1.35 +@see REComSession
    1.36 +@publishedAll
    1.37 +@released
    1.38 +*/
    1.39 +
    1.40 +class TEComResolverParams
    1.41 +	{
    1.42 +public:
    1.43 +	
    1.44 +	inline TEComResolverParams();
    1.45 +	
    1.46 +	
    1.47 +	inline const TDesC8& DataType() const;
    1.48 +	
    1.49 +	
    1.50 +	inline void SetDataType(const TDesC8& aDataType);
    1.51 +	
    1.52 +	inline TBool IsGenericMatch() const;
    1.53 +	inline void SetGenericMatch(TBool aGenericMatch);
    1.54 +	
    1.55 +	
    1.56 +	inline TBool IsWildcardMatch() const;
    1.57 +	
    1.58 +	
    1.59 +	inline void SetWildcardMatch(TBool aWildcardMatch);
    1.60 +
    1.61 +private:
    1.62 +	/** The Interface Implementation plugin 'datatype' match descriptor.*/
    1.63 +	
    1.64 +	TPtrC8 iDataType;
    1.65 +	
    1.66 +	/** The flag to show if generic matching is enabled */
    1.67 +	TBool iGenericMatch;
    1.68 +	};
    1.69 +
    1.70 +
    1.71 +#include <ecom/ecomresolverparams.inl>
    1.72 +
    1.73 +#endif	// __ECOMRESOLVERPARAMS_H__