vtprotocols/src/cvtuserinput.cpp
changeset 18 d9b6a8729acd
parent 4 6dc066157ed4
child 23 c378a0498b84
child 27 dcbddbbaf8fd
--- a/vtprotocols/src/cvtuserinput.cpp	Tue Jan 26 12:01:21 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,132 +0,0 @@
-/*
-* Copyright (c) 2004-2006 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:  
-*
-*/
-
-
-#include <pv_2way_symbian_interface.h>
-#include <pv_2way_h324m_interface.h>
-#include "mvtprotocolhandler.h"
-#include "cvtuserinput.h"
-
-#ifdef _DEBUG
-#    define __IF_DEBUG(t) {RDebug::t;}
-#else
-#    define __IF_DEBUG(t)
-#endif
-
-// -----------------------------------------------------------------------------
-// CVTUserInputDtmf::ConstructL
-// Constructor.
-// -----------------------------------------------------------------------------
-//
-void CVTUserInputDtmf::ConstructL(TUint8 aTone)
-    {
-    __IF_DEBUG(Print(_L("VTProto: CVTUserInputDtmf::ConstructL<")));	
-    iUII = CPVUserInputDtmfSymbian::NewL( aTone, 0 );
-    __IF_DEBUG(Print(_L("VTProto: CVTUserInputDtmf::ConstructL>")));
-    }
-
-// -----------------------------------------------------------------------------
-// CVTUserInputDtmf::CVTUserInputDtmf
-// Constructor.
-// -----------------------------------------------------------------------------
-//
-CVTUserInputDtmf* CVTUserInputDtmf::NewL(TUint8 aTone)
-    {
-    __IF_DEBUG(Print(_L("VTProto: CVTUserInputDtmf::NewL<")));	
-    CVTUserInputDtmf* self = new (ELeave)CVTUserInputDtmf();
-    CleanupStack::PushL(self);
-    self->ConstructL(aTone);
-    CleanupStack::Pop();
-    __IF_DEBUG(Print(_L("VTProto: CVTUserInputDtmf::NewL>")));
-    return self;
-    }
-
-// -----------------------------------------------------------------------------
-// CVTUserInputDtmf::~CVTUserInputDtmf
-// Destructor.
-// -----------------------------------------------------------------------------
-//
-CVTUserInputDtmf::~CVTUserInputDtmf()
-    {
-    __IF_DEBUG(Print(_L("VTProto: CVTUserInputDtmf::~CVTUserInputDtmf<")));	
-    delete iUII;
-    __IF_DEBUG(Print(_L("VTProto: CVTUserInputDtmf::~CVTUserInputDtmf>")));
-    }
-
-// -----------------------------------------------------------------------------
-// CVTUserInputDtmf::GetType
-// Virtual function to return the user input type
-// -----------------------------------------------------------------------------
-//
-TUserInputType CVTUserInputDtmf::GetType()
-    {
-    return EVtUiiDTFM;
-    }
-
-// -----------------------------------------------------------------------------
-// CVTUserInputDtmf::ConstructL
-// Constructor.
-// -----------------------------------------------------------------------------
-//
-void CVTUserInputAlphanumeric::ConstructL(TUint8 aTone)
-    {
-    __IF_DEBUG(Print(_L("VTProto: CVTUserInputAlphanumeric::ConstructL<")));	
-    TBuf8<1> tone;
-    tone.Append( aTone );
-    iUII = CPVUserInputAlphanumericSymbian::NewL( tone );
-    __IF_DEBUG(Print(_L("VTProto: CVTUserInputAlphanumeric::ConstructL>")));
-    }
-
-// -----------------------------------------------------------------------------
-// CVTUserInputAlphanumeric::CVTUserInputAlphanumeric
-// Constructor.
-// -----------------------------------------------------------------------------
-//
-CVTUserInputAlphanumeric* CVTUserInputAlphanumeric::NewL(TUint8 aTone)
-    {
-    __IF_DEBUG(Print(_L("VTProto: CVTUserInputAlphanumeric::NewL<")));
-    CVTUserInputAlphanumeric* self = new (ELeave)CVTUserInputAlphanumeric();
-    CleanupStack::PushL(self);
-    self->ConstructL(aTone);
-    CleanupStack::Pop();
-    __IF_DEBUG(Print(_L("VTProto: CVTUserInputAlphanumeric::NewL>")));   
-    return self;
-    }
-
-// -----------------------------------------------------------------------------
-// CVTUserInputAlphanumeric::~CVTUserInputAlphanumeric
-// Destructor.
-// -----------------------------------------------------------------------------
-//
-CVTUserInputAlphanumeric::~CVTUserInputAlphanumeric()
-    {
-    __IF_DEBUG(Print(_L("VTProto: CVTUserInputAlphanumeric::~CVTUserInputAlphanumeric<")));		
-    delete iUII;
-    __IF_DEBUG(Print(_L("VTProto: CVTUserInputAlphanumeric::~CVTUserInputAlphanumeric>")));		
-    }
-
-// -----------------------------------------------------------------------------
-// CVTUserInputAlphanumeric::GetType
-// Virtual function to return the user input type.
-// -----------------------------------------------------------------------------
-//
-TUserInputType CVTUserInputAlphanumeric::GetType()
-    {
-    return EVtUiiAlphaNumeric;
-    }
-
-// end of file