phonecmdhandler/phonecmdhnlr/inc/PhoneHandlerCallState.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
--- a/phonecmdhandler/phonecmdhnlr/inc/PhoneHandlerCallState.h	Mon Aug 23 15:50:31 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,117 +0,0 @@
-/*
-* Copyright (c) 2002-2006 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 CPhoneHandlerCallState class.
-*
-*
-*/
-
-
-#ifndef CPHONEHANDLERCALLSTATE_H
-#define CPHONEHANDLERCALLSTATE_H
-
-// INCLUDES
-#include <e32base.h>
-#include <e32property.h>
-
-// CONSTANTS
-
-// MACROS
-
-// DATA TYPES
-
-// FUNCTION PROTOTYPES
-
-// FORWARD DECLARATIONS
-class CPhoneHandlerControl;
-
-// CLASS DECLARATION
-
-/**
-*  Active object that listens to S60 call states.
-*
-*  @lib RemConAsy
-*  @since S60 3.1
-*/
-NONSHARABLE_CLASS( CPhoneHandlerCallState ) : public CActive
-    {
-    public: // Constructors and destructor
-    
-        /**
-        * Two-phased constructor.
-        */
-        static CPhoneHandlerCallState* NewL( CPhoneHandlerControl& aControl );
-    
-        /**
-        * Destructor.
-        */
-        ~CPhoneHandlerCallState();
-    
-    public: // New functions
-                
-    public: // Functions from base classes
-        
-    protected:  // New functions
-    
-    protected:  // Functions from base classes
-    
-        /**
-        * From CActive. Handles S60 start up state change event.
-        */
-        void RunL();
-    
-        /**
-        * From CActive. Implements cancellation of an outstanding Subscibe() 
-        * request.
-        */
-        void DoCancel();
-    
-    private:
-        
-        /**
-        * C++ default constructor.
-        */
-        CPhoneHandlerCallState( CPhoneHandlerControl& aControl );
-    
-        /**
-        * By default Symbian 2nd phase constructor is private.
-        */
-        void ConstructL();
-        
-        /**
-        * Starts to listen change in S60 start up state.
-        **/
-        void Subscribe();
-    
-    public:     // Data
-    
-    protected:  // Data
-    
-    private:    // Data
-    
-        // Publish and Subscribe handle used to listen changes in call states 
-        RProperty iProperty;
-                        
-        // reference to control
-        CPhoneHandlerControl& iControl;
-        
-    public:     // Friend classes
-
-    protected:  // Friend classes
-
-    private:    // Friend classes
-    };
-
-#endif // CPHONEHANDLERCALLSTATE_H
-
-// End of File