connectionmonitoring/connectionmonitorui/inc/CsdConnectionInfo.h
branchRCL_3
changeset 24 05bc53fe583b
parent 23 fc7b30ed2058
child 25 83ca720e2b9a
--- a/connectionmonitoring/connectionmonitorui/inc/CsdConnectionInfo.h	Thu Aug 19 10:18:49 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,129 +0,0 @@
-/*
-* Copyright (c) 2004 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:  Represents a connection
-*     
-*
-*/
-
-
-#ifndef CSDCONNECTIONINFO_H_INCLUDED
-#define CSDCONNECTIONINFO_H_INCLUDED
-
-// INCLUDES
-#include    <rconnmon.h>
-#include    <stdlib.h>
-#include    "ConnectionInfoBase.h"
-
-// CONSTANTS
-
-// FORWARD DECLARATIONS
-
-// CLASS DECLARATION
-
-/**
-* Represents a connection.
-*/
-class CCsdConnectionInfo : public CConnectionInfoBase     
-    {
-    public: 
-        /**
-        * Static constructor
-        * @param aConnectionId The id of the given connection.
-        * @param aMonitor for refreshing details
-        * @param aConnectionBearerType the bearer type of connection
-        * @param aActiveWrapper the for refreshing
-        */
-        static CCsdConnectionInfo* NewL( TInt aConnectionId, 
-                                  RConnectionMonitor* const aConnectionMonitor,
-                                  TConnMonBearerType aConnectionBearerType,
-                                  CActiveWrapper* aActiveWrapper );
-                
-        /**
-        * Destructor
-        */
-        virtual ~CCsdConnectionInfo();
-    public:
-    
-        /**
-        * Give back a copy of connection. 
-        */
-        virtual CConnectionInfoBase* DeepCopyL();
-    
-        /**
-        * Refresh required details of connection. 
-        */
-        virtual void RefreshDetailsL();
-
-        /**
-        * Refresh iListBoxItemText text, connection ListBox has a reference to
-        * this text.
-        */
-        virtual void RefreshConnectionListBoxItemTextL();
-
-        /**
-        * Refresh details array of connection. DetailsListBox has a reference
-        * to this array.
-        */
-        virtual void RefreshDetailsArrayL();
-
-        /**
-        * Gives back the icon id of connection type
-        * @return the icon id of connection type
-        */
-        virtual TUint GetIconId() const;
-
-    protected:
-        /**
-        * Constructor
-        * @param aConnectionId The id of the given connection.
-        * @param aMonitor for refreshing details
-        * @param aConnectionBearerType the bearer type of connection
-        * @param aActiveWrapper the for refreshing
-        */
-        CCsdConnectionInfo(  TInt aConnectionId, 
-                             RConnectionMonitor* const aConnectionMonitor,
-                             TConnMonBearerType aConnectionBearerType,
-                             CActiveWrapper* aActiveWrapper );
-
-        /**
-        * Second phase construction
-        */
-        void ConstructL();
-
-    protected:
-        /**
-        * Creates an array with requrired details of connection to
-        * the listbox which visulaize details of connection. This member
-        * is called at initialization.
-        */
-        virtual void ToArrayDetailsL();
-
-        /**
-        * Creates a string from dialup number of the connection.
-        * @return string representation count of sharigs of the connection.
-        */
-        HBufC* ToStringDialupNumberLC() const;
-
-    private:
-
-    protected: // Data members
-    
-        TBuf<KTelNumber>    iDialupNumber;  ///< DialupNumber of connection
-        
-    };
-
-
-#endif // CSDCONNECTIONINFO_H_INCLUDED
-
-// Enf of File