srsfenginestub/common/src/asrshwdevice.cpp
changeset 45 55e13740998c
parent 41 46385f45ba4e
child 47 fb031b08c285
--- a/srsfenginestub/common/src/asrshwdevice.cpp	Mon Sep 13 14:16:46 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,106 +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:     Hardware device base class
-*
-*/
-
-
-
-
-
-
-// INCLUDE FILES
-#include    "asrshwdevice.h"
-
-// ============================ MEMBER FUNCTIONS ===============================
-
-// -----------------------------------------------------------------------------
-// CASRSHwDevice::CASRSHwDevice
-// C++ default constructor can NOT contain any code, that
-// might leave.
-// -----------------------------------------------------------------------------
-//
-CASRSHwDevice::CASRSHwDevice()
-    {
-    }
-
-// -----------------------------------------------------------------------------
-// CASRSHwDevice::ConstructL
-// Symbian 2nd phase constructor can leave.
-// -----------------------------------------------------------------------------
-//
-void CASRSHwDevice::ConstructL()
-    {
-    }
-
-// -----------------------------------------------------------------------------
-// CASRSHwDevice::NewL
-// Two-phased constructor.
-// -----------------------------------------------------------------------------
-//
-EXPORT_C CASRSHwDevice* CASRSHwDevice::NewL()
-    {
-    CASRSHwDevice* self = new( ELeave ) CASRSHwDevice;
-    
-    CleanupStack::PushL( self );
-    self->ConstructL();
-    CleanupStack::Pop();
-
-    return self;
-    }
-
-
-// -----------------------------------------------------------------------------
-// CASRSHwDevice::~CASRSHwDevice    
-// Destructor
-// -----------------------------------------------------------------------------
-//
-EXPORT_C CASRSHwDevice::~CASRSHwDevice()
-    {
-    
-    }
- 
-// -----------------------------------------------------------------------------
-// CASRSHwDevice::InitializeL()
-// do nothing
-// (other items were commented in a header).
-// -----------------------------------------------------------------------------
-//
-EXPORT_C void CASRSHwDevice::InitializeL()
-   {
-   // nothing
-   }
-
-// -----------------------------------------------------------------------------
-// CASRSHwDevice::Clear()
-// do nothing
-// (other items were commented in a header).
-// -----------------------------------------------------------------------------
-//
-EXPORT_C void CASRSHwDevice::Clear()
-   {
-   // nothing
-   }
-
-// -----------------------------------------------------------------------------
-// CASRSHwDevice::CustomInterface()
-// return empty interface
-// (other items were commented in a header).
-// -----------------------------------------------------------------------------
-//
-EXPORT_C TAny* CASRSHwDevice::CustomInterface( TUid /*aInterfaceId*/ )
-   {
-   return NULL;
-   }
-