accessoryservices/autoaudioasy/inc/cautoaudioasymainservicebase.h
branchRCL_3
changeset 60 ccb4f6b3db21
equal deleted inserted replaced
56:1ddbe54d0645 60:ccb4f6b3db21
       
     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:  Header file for autoaudioasy main service
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef CAUTOAUDIOASYMAINSERVICEBASE_H_
       
    19 #define CAUTOAUDIOASYMAINSERVICEBASE_H_
       
    20 
       
    21 #include <asymainservicebase.h>
       
    22 
       
    23 //Forward declarations
       
    24 class CAutoAudioAsyService;
       
    25 
       
    26 
       
    27 /**
       
    28  *  Creates ASY main service
       
    29  */
       
    30 NONSHARABLE_CLASS(CAutoAudioAsyMainServiceBase): public CASYMainServiceBase
       
    31     {
       
    32 public:  // Constructors and destructor
       
    33         
       
    34     static CAutoAudioAsyMainServiceBase* NewL ();
       
    35     virtual ~CAutoAudioAsyMainServiceBase ();
       
    36 
       
    37 public: // From CASYMainServiceBase
       
    38                 
       
    39     TInt StartL();
       
    40 
       
    41 private: // Functions
       
    42 
       
    43     CAutoAudioAsyMainServiceBase (); 
       
    44     void ConstructL ();
       
    45 	
       
    46 	void InitPSAutoAudioL ();
       
    47 
       
    48 private: //Data
       
    49 
       
    50     /**
       
    51      * Handle to service class.
       
    52      * Own.
       
    53      */
       
    54     CAutoAudioAsyService* iService;
       
    55     };
       
    56 
       
    57 #endif // CAUTOAUDIOASYMAINSERVICEBASE_H_