gsprofilesrv_pub/profiles_engine_wrapper_api/inc/MProEngProfileName.h
changeset 0 8c5d936e5675
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gsprofilesrv_pub/profiles_engine_wrapper_api/inc/MProEngProfileName.h	Thu Dec 17 08:52:52 2009 +0200
@@ -0,0 +1,84 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:  Profile name interface.
+*
+*/
+
+
+
+#ifndef MPROENGPROFILENAME_H
+#define MPROENGPROFILENAME_H
+
+// INCLUDES
+#include <e32std.h>
+
+// FORWARD DECLARATIONS
+class MProEngProfileNameExt; 
+
+// CLASS DECLARATION
+
+/**
+*  Profile name interface.
+*  This interface offers methods to get profile ID and to get and set the
+*  profile name.
+*
+*  @lib N/A
+*  @since 3.1
+*/
+class MProEngProfileName
+    {
+    protected:  // Destructor
+
+        virtual ~MProEngProfileName() {};
+
+    public:
+        /**
+        * Returns ID of the profile.
+        * @since 3.1
+        * @return Returns ID of the profile.
+        */
+        virtual TInt Id() const = 0;
+
+        /**
+        * Returns the name of the profile.
+        * @since 3.1
+        * @return Returns name of the profile.
+        */
+        virtual const TDesC& Name() const = 0;
+
+        /**
+        * Set the name of the profile.
+        * @since 3.1
+        * @param aName Name of the profile.
+        * @return KErrNone if succesful,
+        *         KErrAccessDenied if name setting of this profile is read-only,
+        *         KErrAlreadyExists if the name is already used by another
+        *         profile.
+        *         
+        */
+        virtual TInt SetNameL( const TDesC& aName ) = 0;
+
+    private: // Extension interface
+
+        /**
+        * This member is internal and not intended for use.
+        */
+        virtual MProEngProfileNameExt* Extension() { return NULL; }
+
+    };
+
+#endif      // MPROENGPROFILENAME_H
+
+// End of File
+