phoneapp/phoneuiqtviewadapter/tsrc/ut_phoneuiqtviewadapter/phoneindicatorcontroller_stub.cpp
author William Roberts <williamr@symbian.org>
Thu, 22 Jul 2010 16:33:21 +0100
branchGCC_SURGE
changeset 51 f39ed5e045e0
parent 45 6b911d05207e
child 60 1eef62f5c541
permissions -rw-r--r--
Catchup to latest Symbian^4

/*
 * phoneindicatorcontroller_stub.cpp
 *
 *  Created on: May 4, 2010
 *      Author: maposio
 */

#include "phoneindicatorcontroller.h"

bool m_setActiveCallCalled;
bool m_clearActiveCallCalled;
bool m_enableCallIndCalled;
bool m_disableCallIndCalled;

PhoneIndicatorController::PhoneIndicatorController(QObject *parent):
QObject(parent)
{
    m_setActiveCallCalled = false;
    m_clearActiveCallCalled = false;
    m_enableCallIndCalled = false;
    m_disableCallIndCalled = false;
}

PhoneIndicatorController::~PhoneIndicatorController()
{
// TODO Auto-generated destructor stub
}


void PhoneIndicatorController::setActiveCallData()
{
    m_setActiveCallCalled = true;
}

void PhoneIndicatorController::clearActiveCallData()
{
    m_clearActiveCallCalled = true;
}

void PhoneIndicatorController::enableActiveCallIndicator()
{
    m_enableCallIndCalled = true;
}

void PhoneIndicatorController::disableActiveCallIndicator()
{
    m_disableCallIndCalled = true;
}