messagingfw/alwaysonline/AlwaysOnlineManager/src/MuiuMsvSingleOpWatcher.cpp
branchRCL_3
changeset 23 d51193d814ea
parent 22 d2c4c66342f3
child 24 002ade1da91c
equal deleted inserted replaced
22:d2c4c66342f3 23:d51193d814ea
     1 /*
       
     2 * Copyright (c) 2002 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:  
       
    15 *     Messaging progress watching classes
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 // INCLUDE FILES
       
    23 #include <MSVAPI.H>
       
    24 //#include "muiudomainpan.h"
       
    25 #include "MuiuMsvSingleOpWatcher.H"
       
    26 
       
    27 // CONSTANTS
       
    28 const TInt KSingleOpWatcherPriority = KMaxTInt;
       
    29 
       
    30 
       
    31 // ============================ MEMBER FUNCTIONS ===============================
       
    32 
       
    33 // ---------------------------------------------------------
       
    34 // CMsvSingleOpWatcher::NewLC
       
    35 //
       
    36 // ---------------------------------------------------------
       
    37 //
       
    38 EXPORT_C CMsvSingleOpWatcher* CMsvSingleOpWatcher::NewLC( MMsvSingleOpWatcher& aObserver )
       
    39     {}
       
    40 
       
    41 
       
    42 // ---------------------------------------------------------
       
    43 // CMsvSingleOpWatcher::NewL
       
    44 //
       
    45 // ---------------------------------------------------------
       
    46 //
       
    47 EXPORT_C CMsvSingleOpWatcher* CMsvSingleOpWatcher::NewL( MMsvSingleOpWatcher& aObserver )
       
    48     {}
       
    49 
       
    50 
       
    51 // ---------------------------------------------------------
       
    52 // CMsvSingleOpWatcher::CMsvSingleOpWatcher
       
    53 //
       
    54 // ---------------------------------------------------------
       
    55 //
       
    56 CMsvSingleOpWatcher::CMsvSingleOpWatcher( MMsvSingleOpWatcher& aObserver )
       
    57     : CActive( KSingleOpWatcherPriority ), iObserver( aObserver )
       
    58     {}
       
    59 
       
    60 
       
    61 // ---------------------------------------------------------
       
    62 // CMsvSingleOpWatcher::ConstructL
       
    63 //
       
    64 // ---------------------------------------------------------
       
    65 //
       
    66 void CMsvSingleOpWatcher::ConstructL()
       
    67     {
       
    68     // Nothing to do, reserved for future use...
       
    69     }
       
    70 
       
    71 
       
    72 // ---------------------------------------------------------
       
    73 // CMsvSingleOpWatcher::~CMsvSingleOpWatcher
       
    74 //
       
    75 // ---------------------------------------------------------
       
    76 //
       
    77 EXPORT_C CMsvSingleOpWatcher::~CMsvSingleOpWatcher()
       
    78     {}
       
    79 
       
    80 
       
    81 // ---------------------------------------------------------
       
    82 // CMsvSingleOpWatcher::SetOperation
       
    83 // --- Setter ---
       
    84 // Must only be called once during the lifetime of a CMsvSingleOpWatcher object.
       
    85 // ---------------------------------------------------------
       
    86 //
       
    87 EXPORT_C void CMsvSingleOpWatcher::SetOperation(CMsvOperation* aOperation)
       
    88     {}
       
    89 
       
    90 
       
    91 // ---------------------------------------------------------
       
    92 // CMsvSingleOpWatcher::Operation
       
    93 // --- Accessor ---
       
    94 // ---------------------------------------------------------
       
    95 //
       
    96 EXPORT_C CMsvOperation& CMsvSingleOpWatcher::Operation() const
       
    97     {}
       
    98 
       
    99 
       
   100 // ---------------------------------------------------------
       
   101 // CMsvSingleOpWatcher::DoCancel
       
   102 // --- From CActive ---
       
   103 // ---------------------------------------------------------
       
   104 //
       
   105 void CMsvSingleOpWatcher::DoCancel()        
       
   106     {}
       
   107 
       
   108 
       
   109 //------------------------------------
       
   110 // CMsvSingleOpWatcher::RunL
       
   111 // --- From CActive ---
       
   112 // ---------------------------------------------------------
       
   113 //
       
   114 void CMsvSingleOpWatcher::RunL()
       
   115     {}
       
   116 
       
   117 // End of file