satui/satapp/SATUIInc/CSatUiWaitDialog.h
branchRCL_3
changeset 19 7d48bed6ce0c
parent 18 594d59766373
child 20 987c9837762f
--- a/satui/satapp/SATUIInc/CSatUiWaitDialog.h	Thu Aug 19 10:28:14 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,72 +0,0 @@
-/*
-* Copyright (c) 2002 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: 
-*     Implements the feature for investigating length of the input. Softkeys
-*     are set based on this information.
-*     
-*
-*/
-
-
-#ifndef CSATUIWAITDIALOG_H
-#define CSATUIWAITDIALOG_H
-
-//  INCLUDES
-#include <AknWaitDialog.h>
-
-// FORWARD DECLARATION
-class MSatUiAdapter;
-
-// CLASS DECLARATION
-
-/**
- *  Defines the SAT spesific data query class.
- */
-class CSatUiWaitDialog : public CAknWaitDialog
-    {
-    public:  // Constructors and destructor
-
-         /**
-         * C++ default constructor.
-         */
-        CSatUiWaitDialog( 
-            CEikDialog** aSelfPtr,
-            MSatUiAdapter& aAdapter,                
-            TBool aVisibilityDelayOff );
-
-        /**
-         * Destructor.
-         */
-        virtual ~CSatUiWaitDialog();
-
-    public: // Override functions from base classes
-    
-        /**
-         * From @c CEikDialog.
-         * Handles a dialog button press for the specified button.
-         * @param aButtonId The ID of the button that was activated
-         * @return ETrue to validate and exit the dialog
-         */
-        TBool CSatUiWaitDialog::OkToExitL( TInt aButtonId );
-        
-    private:    // Data
-
-        // Reference to adapter. Used to inform SAT Client if user 
-        // presses Cancel during dialog is showing
-        MSatUiAdapter& iAdapter;
-    };
-
-#endif      // CSATUIWAITDIALOG_H
-
-// End of File