sipexsipstatebase.cpp

来自「an example for sip for symbian」· C++ 代码 · 共 166 行

CPP
166
字号
/*
* ==============================================================================
*  Name        : SIPExSIPStateBase.cpp
*  Part of     : SIPExSIPEngine
*  Interface   : 
*  Description : 
*  Version     : 
*
*  Copyright (c) 2004-2006 Nokia Corporation.
*  This material, including documentation and any related 
*  computer programs, is protected by copyright controlled by 
*  Nokia Corporation.
* ==============================================================================
*/

// INCLUDE FILES

#include "SIPExSIPStateBase.h"
#include "SIPExSIPEngine.h"

// ============================ MEMBER FUNCTIONS ===============================

// -----------------------------------------------------------------------------
// CSIPExSIPStateBase::CSIPExSIPStateBase
// (other items were commented in a header).
// -----------------------------------------------------------------------------
CSIPExSIPStateBase::CSIPExSIPStateBase()
	{
	}

// -----------------------------------------------------------------------------
// CSIPExSIPStateBase::CSIPExSIPStateBase
// (other items were commented in a header).
// -----------------------------------------------------------------------------
CSIPExSIPStateBase::~CSIPExSIPStateBase()
	{
	}

// -----------------------------------------------------------------------------
// CSIPExSIPStateBase::SendInviteL()
// (other items were commented in a header).
// -----------------------------------------------------------------------------
void CSIPExSIPStateBase::SendInviteL( 
    CSIPExSIPEngine& /* aEngine */,
	const TDesC8& /* aSipUri */ )
	{
	//User::Leave( KErrTotalLossOfPrecision );
	}

// -----------------------------------------------------------------------------
// CSIPExSIPStateBase::CancelInviteL()
// (other items were commented in a header).
// -----------------------------------------------------------------------------
void CSIPExSIPStateBase::CancelInviteL(
	CSIPExSIPEngine& /* aEngine */ )
	{
	//User::Leave( KErrTotalLossOfPrecision );
	}


// -----------------------------------------------------------------------------
// CSIPExSIPStateBase::AcceptInviteL()
// (other items were commented in a header).
// -----------------------------------------------------------------------------
void CSIPExSIPStateBase::AcceptInviteL(
	CSIPExSIPEngine& /* aEngine */ )
	{
	//User::Leave( KErrTotalLossOfPrecision );
	}


// -----------------------------------------------------------------------------
// CSIPExSIPStateBase::DeclineInviteL()
// (other items were commented in a header).
// -----------------------------------------------------------------------------
void CSIPExSIPStateBase::DeclineInviteL(
	CSIPExSIPEngine& /* aEngine */ )
	{
	//User::Leave( KErrTotalLossOfPrecision );
	}



// -----------------------------------------------------------------------------
// CSIPExSIPStateBase::EndSessionL()
// (other items were commented in a header).
// -----------------------------------------------------------------------------
void CSIPExSIPStateBase::EndSessionL( CSIPExSIPEngine& /* aEngine */ )
	{
	//User::Leave( KErrTotalLossOfPrecision );
	}


// -----------------------------------------------------------------------------
// CSIPExSIPStateBase::ResponseReceivedL()
// (other items were commented in a header).
// -----------------------------------------------------------------------------
void CSIPExSIPStateBase::ResponseReceivedL(
	CSIPExSIPEngine& /* aEngine */,
	CSIPClientTransaction& /* aTransaction */ )
	{
	//User::Leave( KErrTotalLossOfPrecision );
	}


// -----------------------------------------------------------------------------
// CSIPExSIPStateBase::AckReceivedL()
// (other items were commented in a header).
// -----------------------------------------------------------------------------
void CSIPExSIPStateBase::AckReceivedL(
	CSIPExSIPEngine& /* aEngine */,
	CSIPServerTransaction& /* aTransaction */)
	{
	//User::Leave( KErrTotalLossOfPrecision );
	}


// -----------------------------------------------------------------------------
// CSIPExSIPStateBase::ByeReceivedL()
// (other items were commented in a header).
// -----------------------------------------------------------------------------
void CSIPExSIPStateBase::ByeReceivedL(
	CSIPExSIPEngine& /* aEngine */,
	CSIPServerTransaction& /* aTransaction */ )
	{
	//User::Leave( KErrTotalLossOfPrecision );
	}


// -----------------------------------------------------------------------------
// CSIPExSIPStateBase::CancelReceivedL()
// (other items were commented in a header).
// -----------------------------------------------------------------------------
void CSIPExSIPStateBase::CancelReceivedL(
	CSIPExSIPEngine& /* aEngine */,
	CSIPClientTransaction& /* aTransaction */ )
	{
	//User::Leave( KErrTotalLossOfPrecision );
	}


// -----------------------------------------------------------------------------
// CSIPExSIPStateBase::InviteReceivedL()
// (other items were commented in a header).
// -----------------------------------------------------------------------------
void CSIPExSIPStateBase::InviteReceivedL(
	CSIPExSIPEngine& /* aEngine */,
	CSIPServerTransaction* /* aTransaction */ )
	{
	//User::Leave( KErrTotalLossOfPrecision );
	}


// -----------------------------------------------------------------------------
// CSIPExSIPStateBase::ErrorOccurred()
// (other items were commented in a header).
// -----------------------------------------------------------------------------
//
void CSIPExSIPStateBase::ErrorOccured(
	CSIPExSIPEngine& /*aContext*/,
	TInt /*aError*/)
	{
	}

// End of file

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?