messagingapp/msgsettings/msginit/tsrc/testmsginit/src/testoutboxsender_stub.cpp
changeset 70 a15d9966050f
equal deleted inserted replaced
61:8ba0afbb4637 70:a15d9966050f
       
     1 /*
       
     2  * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of "Eclipse Public License v1.0"
       
     6  * which accompanies this distribution, and is available
       
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Nokia Corporation - initial contribution.
       
    11  *
       
    12  * Contributors:
       
    13  *
       
    14  * Description:   Implements class
       
    15  *
       
    16  */
       
    17 
       
    18 // INCLUDE FILES
       
    19 
       
    20 #include <CoreApplicationUIsSDKCRKeys.h>
       
    21 #include <msvuids.h>                 // Entry Uids
       
    22 #include "coutboxsendoperation.h"
       
    23 #include "testoutboxsender_stub.h"
       
    24 #include "debugtraces.h"
       
    25 
       
    26 // CONSTANTS
       
    27 const TInt KListBar0(0);
       
    28 
       
    29 // ================= MEMBER FUNCTIONS =======================
       
    30 
       
    31 // ----------------------------------------------------
       
    32 //  CTestOutboxSender::NewL
       
    33 // ----------------------------------------------------
       
    34 //
       
    35 CTestOutboxSender* CTestOutboxSender::NewL(CMsvSession& aMsvSession)
       
    36 {
       
    37     CTestOutboxSender* self = new (ELeave) CTestOutboxSender(aMsvSession);
       
    38     CleanupStack::PushL(self);
       
    39     self->ConstructL();
       
    40     CleanupStack::Pop();
       
    41     return self;
       
    42 }
       
    43 
       
    44 // ----------------------------------------------------
       
    45 //  CTestOutboxSender::CTestOutboxSender
       
    46 // ----------------------------------------------------
       
    47 //
       
    48 CTestOutboxSender::CTestOutboxSender(CMsvSession& aMsvSession)
       
    49 {
       
    50 	QDEBUG_WRITE( "CTestOutboxObserver::CTestOutboxSender" );
       
    51 }
       
    52 
       
    53 // ----------------------------------------------------
       
    54 //  CTestOutboxSender::~CTestOutboxSender
       
    55 // ----------------------------------------------------
       
    56 //
       
    57 CTestOutboxSender::~CTestOutboxSender()
       
    58 {
       
    59 	QDEBUG_WRITE( "CTestOutboxObserver::CTestOutboxSender" );
       
    60 }
       
    61 
       
    62 // ----------------------------------------------------
       
    63 //  CTestOutboxSender::ConstructL
       
    64 // ----------------------------------------------------
       
    65 //
       
    66 void CTestOutboxSender::ConstructL()
       
    67 {
       
    68 	QDEBUG_WRITE( "CTestOutboxObserver::ConstructL" );
       
    69 }
       
    70 
       
    71 // ----------------------------------------------------
       
    72 //  CTestOutboxSender::StartSendingL
       
    73 // ----------------------------------------------------
       
    74 //
       
    75 void CTestOutboxSender::StartSendingL()
       
    76 {
       
    77 	QDEBUG_WRITE( "CTestOutboxObserver::ConstructL Enter" );
       
    78 }
       
    79 
       
    80 // ----------------------------------------------------
       
    81 //  CTestOutboxSender::CancelSending
       
    82 // ----------------------------------------------------
       
    83 //
       
    84 void CTestOutboxSender::CancelSending()
       
    85 {
       
    86 	QDEBUG_WRITE( "CTestOutboxObserver::CancelSending" );
       
    87 }
       
    88 
       
    89 // ----------------------------------------------------
       
    90 //  CTestOutboxSender::IsSending
       
    91 // ----------------------------------------------------
       
    92 //
       
    93 TBool CTestOutboxSender::IsSending() const
       
    94 {
       
    95 	QDEBUG_WRITE( "CTestOutboxObserver::IsSending" );
       
    96 }
       
    97 
       
    98 // ----------------------------------------------------
       
    99 //  CTestOutboxSender::OpCompleted
       
   100 // ----------------------------------------------------
       
   101 //
       
   102 void CTestOutboxSender::OpCompleted(CMsvSingleOpWatcher& /*aOpWatcher*/, TInt /*aCompletionCode*/)
       
   103 {
       
   104 	QDEBUG_WRITE( "CTestOutboxObserver::OpCompleted" );
       
   105 }
       
   106 
       
   107 // ----------------------------------------------------
       
   108 //  CTestOutboxSender::CheckAndStartSendingL
       
   109 // ----------------------------------------------------
       
   110 //
       
   111 void CTestOutboxSender::CheckAndStartSendingL(const TInt& aNetworkBars)
       
   112 {
       
   113 	QDEBUG_WRITE( "CTestOutboxObserver::CheckAndStartSendingL" );
       
   114 }
       
   115 
       
   116 // ----------------------------------------------------
       
   117 //  CTestOutboxSender::CheckBootPhaseL
       
   118 // ----------------------------------------------------
       
   119 //
       
   120 void CTestOutboxSender::CheckBootPhaseL()
       
   121 {
       
   122 	QDEBUG_WRITE( "CTestOutboxObserver::CheckBootPhaseL" );
       
   123 }
       
   124 
       
   125 // End of file
       
   126 
       
   127