phoneengine/engineinfo/inc/cpeengineinfo.h
changeset 36 2eacb6118286
parent 30 ebdbd102c78a
child 37 ba76fc04e6c2
--- a/phoneengine/engineinfo/inc/cpeengineinfo.h	Fri May 14 15:51:57 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,59 +0,0 @@
-/*
-* Copyright (c) 2008-2008 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:  Telephony events and commands related information
-*
-*/
-
-#ifndef CPEENGINEINFO_H
-#define CPEENGINEINFO_H
-
-#include <e32base.h>
-#include "mpedatastore.h"
-
-/**
- * Holds telephony events and commands related information
- * + Call information is valid for a lifetime of a call
- * + Command information is considered valid at all times and it is 
- * the clients responsibility to set it correctly
- * + Device information related to telephony is valid after startup
- * is completed and is updated according to a set of monitored indications
- *
- */
-NONSHARABLE_CLASS( CPEEngineInfo ) 
-    : public CBase, public MPEDataStore
-    {
-    
-public:
-        
-        /**
-         * Two-phased constructor.
-         * 
-         * @return  The newly created object. Ownership is transferred to the caller.
-         */
-        IMPORT_C static CPEEngineInfo* NewL();
-        
-        /**
-         * Destructor.
-         */
-        virtual ~CPEEngineInfo();
-        
-protected:
-        
-        /**
-         * Constructor.
-         */
-        CPEEngineInfo();
-    };
-
-#endif /*CPEENGINEINFO_H_*/