voipplugins/voipadapters/dmvoipadapter/inc/cdmvoipspsettings.h
branchRCL_3
changeset 21 f742655b05bf
parent 20 65a3ef1d5bd0
child 22 d38647835c2e
--- a/voipplugins/voipadapters/dmvoipadapter/inc/cdmvoipspsettings.h	Thu Aug 19 09:45:22 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,115 +0,0 @@
-/*
-* Copyright (c) 2008-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:  SPSettings class for Device Management VoIP Settings Adapter
-*
-*/
-
-#ifndef CDMVOIPSPSETTINGS_H
-#define CDMVOIPSPSETTINGS_H
-
-#include <e32base.h>
-#include <e32cmn.h>
-
-/**
- * CDMVoIPSPSettings
- * Class for transiently holding Service Provider Setting values.
- *
- * @since S60 3.2
- */
-class CDMVoIPSPSettings: public CBase
-    {
-public:
-    static CDMVoIPSPSettings* NewL();
-    static CDMVoIPSPSettings* NewLC();
-    virtual ~CDMVoIPSPSettings();
-
-private:
-    CDMVoIPSPSettings();
-    void ConstructL();
-
-public: // data
-
-    /**
-     * VoiceMailBox MWI URI.
-     * Own.
-     */
-    HBufC* iVmbxMwiUri;
-
-    /**
-     * VoiceMailBox listening address (URI).
-     * Own.
-     */
-    HBufC* iVmbxListenUri;
-
-    /**
-     * VoiceMailBox IAP ID.
-     */
-    TUint32 iVmbxIapId;
-
-    /**
-     * VoiceMailBox Re-SUBSCRIBE interval.
-     */
-    TInt iReSubscribeInterval;
-
-    /**
-     * VoiceMailBox SIP ID.
-     */
-    TUint32 iVmbxSipId;
-
-    /**
-     * Service provider bookmark URI.
-     * Own.
-     */
-    HBufC* iServiceProviderBookmark;
-
-    /**
-     * Branding data URI.
-     * Own.
-     */
-    HBufC* iBrandingDataUri;
-
-    /**
-     * Presence profile ID.
-     */
-    TUint32 iPresenceId;
-
-    /**
-     * RCSE profile ID.
-     */
-    TUint32 iRcseProfileId;
-
-    /**
-     * Presence auto accept buddy subscription request.
-     */
-    TInt iAutoAcceptBuddy;
-
-    /**
-     * Auto enable state of service.
-     */
-    TInt iAutoEnableService;
-
-    /**
-     * Snap profile ID.
-     */
-    TUint32 iSnapId;
-
-    /**
-     * IM enabled.
-     */
-    TInt iImEnabled;
-    };
-
-#endif // CDMVOIPSPSETTINGS_H
-
-// End of file.