mmserv/radioutility/radio_utility/src/RadioMonitor.cpp
changeset 0 71ca22bcf22a
child 19 095bea5f582e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mmserv/radioutility/radio_utility/src/RadioMonitor.cpp	Tue Feb 02 01:08:46 2010 +0200
@@ -0,0 +1,72 @@
+/*
+* Copyright (c) 2007 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:  Radio Monitor interface implementation
+*
+*/
+
+
+#include "RadioMonitorBody.h"
+
+
+// ======== MEMBER FUNCTIONS ========
+
+// -----------------------------------------------------------------------------
+// CRadioMonitor::NewL
+// Two-phased constructor.
+// -----------------------------------------------------------------------------
+//
+EXPORT_C CRadioMonitor* CRadioMonitor::NewL(
+    MRadioMonitorObserver& aObserver )
+    {
+    CRadioMonitor* self = new(ELeave) CRadioMonitor( aObserver );
+    CleanupStack::PushL(self);
+    self->iBody = CRadioMonitor::CBody::NewL( aObserver );
+    CleanupStack::Pop();
+    return self;
+    }
+
+// -----------------------------------------------------------------------------
+// Destructor.
+// -----------------------------------------------------------------------------
+//
+EXPORT_C CRadioMonitor::~CRadioMonitor()
+    {
+    delete iBody;
+    }
+
+// -----------------------------------------------------------------------------
+// CRadioMonitor::CRadioMonitor
+// (other items were commented in a header).
+// -----------------------------------------------------------------------------
+//
+CRadioMonitor::CRadioMonitor(
+    MRadioMonitorObserver& /*aObserver*/ )
+    {
+    }
+
+// -----------------------------------------------------------------------------
+// CRadioMonitor::IsRadioOn
+// Abstraction of PlayerState
+// (other items were commented in a header).
+// -----------------------------------------------------------------------------
+//
+EXPORT_C TBool CRadioMonitor::IsRadioOn() const
+    {
+    ASSERT(iBody);
+    return iBody->IsRadioOn();
+    }
+
+
+
+// End of File