remotecontrol/remotecontrolfw/client/intermediate/public/remconinterfacefeatures.h
changeset 51 20ac952a623c
equal deleted inserted replaced
48:22de2e391156 51:20ac952a623c
       
     1 // Copyright (c) 2008-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 //
       
    15 
       
    16 #ifndef REMCONINTERFACEFEATURES_H
       
    17 #define REMCONINTERFACEFEATURES_H
       
    18 
       
    19 #include <e32base.h>
       
    20 
       
    21 /**
       
    22 @publishedAll
       
    23 @released
       
    24 */
       
    25 NONSHARABLE_CLASS(RRemConInterfaceFeatures)
       
    26 	{
       
    27 public:
       
    28 	IMPORT_C TInt Open();
       
    29 	IMPORT_C void Close();
       
    30 	
       
    31 	IMPORT_C void AddOperationL(TUint aOperationId);
       
    32 	const TDesC8& SupportedOperations() const;
       
    33 	
       
    34 private:
       
    35 	RBuf8 iOperations;
       
    36 	};
       
    37 
       
    38 #endif // REMCONINTERFACEFEATURES_H