hai
how can i get signalstrength in mobile
please help me
iam getting error in this code
#include"battery.h"
#include <aknnotewrappers.h>
#include <etel3rdparty.h>
#include <E32DES8.H>
CBattery * CBattery::NewL()
{
CBattery *self= new(ELeave)CBattery();
CleanupStack::PushL(self);
self->ConstructL();
CleanupStack::PopAndDestroy(self);
return(self);
}
CBattery::CBattery():CActive(CActive::EPriorityStandard)
{
}
void CBattery::ConstructL()
{
itelephony=CTelephony::NewL();
CActiveScheduler::Add(this);
User::LeaveIfError(iTimer.CreateLocal());
}
void CBattery::Getinfo()
{
itelephony->GetSignalStrength (aReqStatus, aSignalStrength);
SetActive();
}
void CBattery::RunL()
{
// TBuf8<32>battery;
//CAknInformationNote* informationNote1 = new (ELeave) CAknInformationNote;
// informationNote1->ExecuteLD(aSignalStrength);
}
CBattery::~CBattery()
{
Cancel();
iTimer.Close();
}
void CBattery:

oCancel()
{
iTimer.Cancel();
}
TInt CBattery::RunError(TInt aError)
{
return KErrNone;
}