uifw/AvKon/inc/AknNullServiceImpl.h
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     1 /*
       
     2 * Copyright (c) 2004 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:  Server applications framework: Null service implementation
       
    15  *
       
    16  *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef AKNNULLSERVICEIMPL_H
       
    21 #define AKNNULLSERVICEIMPL_H
       
    22 
       
    23 #include "AknNullService.h"
       
    24 #include <f32file.h>
       
    25 
       
    26 const TUid KAknNullServiceUid = { 0x101F8827 };
       
    27 
       
    28 // ---------------------------------------------------------
       
    29 //
       
    30 // ---------------------------------------------------------
       
    31 //
       
    32 NONSHARABLE_CLASS(RAknNullService) : public RAknAppServiceBase
       
    33     {
       
    34 public:
       
    35 
       
    36 private:
       
    37     TUid ServiceUid() const;
       
    38     };
       
    39 
       
    40 
       
    41 // ---------------------------------------------------------
       
    42 //
       
    43 // ---------------------------------------------------------
       
    44 //
       
    45 NONSHARABLE_CLASS(CAknNullServiceImpl) : public CAknNullService
       
    46     {
       
    47 public:
       
    48     ~CAknNullServiceImpl();
       
    49     CAknNullServiceImpl();
       
    50 
       
    51     void ConstructL(const TUid& aAppUid, MAknServerAppExitObserver* aObserver);
       
    52 
       
    53 private:
       
    54     RAknNullService             iService;
       
    55     CApaServerAppExitMonitor*   iMonitor;
       
    56     };
       
    57 
       
    58 
       
    59 #endif
       
    60 
       
    61 // End of file.