vpnui/vpnmanagementui/inc/vpnmanagementuiserversettingsview.h
branchRCL_3
changeset 23 473321461bba
parent 22 9f4e37332ce5
child 24 e06095241a65
--- a/vpnui/vpnmanagementui/inc/vpnmanagementuiserversettingsview.h	Thu Aug 19 10:54:34 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,117 +0,0 @@
-/*
-* Copyright (c) 2003-2007 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:   Declaration of the CServerSettingsView class.
-*
-*/
-
-
-
-#ifndef  __VPNMANAGEMENTUISERVERSETTINGSVIEW_H__
-#define  __VPNMANAGEMENTUISERVERSETTINGSVIEW_H__
-
-// INCLUDES
-#include <aknview.h>
-#include "vpnmanagementuiviewid.h"
-
-// FORWARD DECLERATIONS
-class CServerSettingsContainer;
-
-// CLASS DECLARATION
-
-/**
-*  CServerSettingsView view class.
-*
-*  @lib vpnmanagementui.dll
-*/
-class CServerSettingsView : public CAknView
-    {
-    public: // functions
-
-       /**
-        * Destructor
-        */
-		~CServerSettingsView();
-
-       /**
-        * NewL
-        */
-		static CServerSettingsView* NewL(
-		    const TRect& aRect, CVpnUiLoader& aLoader);
-
-       /**
-        * NewLC
-        */
-		static CServerSettingsView* NewLC(
-		    const TRect& aRect, CVpnUiLoader& aLoader);
-
-        /**
-        * Returns Trust view id
-        */
-        TUid Id() const;
-
-        /**
-        * Handles ClientRectChange
-        */
-        void HandleClientRectChange();
-       
-
-        /**
-        * Handles Softkey and Options list commands
-        */
-        void HandleCommandL(TInt aCommand);
-
-  	public: // data
-
-       /**
-        * To get hold of CVpnUiLoader
-        */
-		CVpnUiLoader&				iLoader;
-
-       /**
-        * To get access to ServerSettingsContainer
-		*/
-        CServerSettingsContainer*		iContainer;
-
-    private: // functions
-
-        /**
-        * Constructor.
-        */
-		CServerSettingsView(CVpnUiLoader& aLoader);
-
-        /**
-        * Symbian OS default constructor.
-        */
-        void ConstructL();
-
-        /**
-        * Updates the view when opening it
-        */
-        void DoActivateL(const TVwsViewId& aPrevViewId,TUid aCustomMessageId,
-            const TDesC8& aCustomMessage);
-
-        /**
-        * Closes the view
-        */
-        void DoDeactivate();
-
-
-        TInt CompleteSettingsL();
-
-    private: // Data
-    };
-
-#endif // __VPNMANAGEMENTUISERVERSETTINGSVIEW_H__
-
-// End of File