speechsrv_plat/vas_api/inc/nssvascselectnotificationbuilder.h
branchRCL_3
changeset 19 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
18:cad71a31b7fc 19:e36f3802f733
       
     1 /*
       
     2 * Copyright (c) 2003 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:  The CNssSelectNotificationBuilder class performs initialization 
       
    15 *                for the CNssTagSelectNotification class. 
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef CNSSSELECTNOTIFICATIONBUILDER_H
       
    21 #define CNSSSELECTNOTIFICATIONBUILDER_H
       
    22 
       
    23 //  INCLUDES
       
    24 
       
    25 #include <e32base.h>
       
    26 #include <e32def.h>
       
    27 #include "nssvasmtagselectnotification.h"
       
    28 
       
    29 // FORWARD DECLARATIONS
       
    30 
       
    31 class CNssTagSelectNotification; 
       
    32 
       
    33 // CLASS DECLARATION
       
    34 
       
    35 /**
       
    36 *
       
    37 *  The CNssSelectNotificationBuilder class performs initialization for the 
       
    38 *  CNssTagSelectNotification class.
       
    39 *
       
    40 *  @lib NssVASApi.lib
       
    41 *  @since 2.8
       
    42 */
       
    43 
       
    44 class CNssSelectNotificationBuilder :public CBase
       
    45     {
       
    46     public:  // Constructors and destructor
       
    47 			 
       
    48         /**
       
    49         * Two-phased constructor.
       
    50         */		
       
    51         IMPORT_C static CNssSelectNotificationBuilder* NewL();
       
    52 
       
    53         /**
       
    54         * Two-phased constructor.
       
    55         */	
       
    56         IMPORT_C static CNssSelectNotificationBuilder* NewLC();
       
    57 
       
    58         /**
       
    59         * Destructor.
       
    60         */	
       
    61         ~CNssSelectNotificationBuilder();
       
    62 
       
    63     public: // New functions
       
    64 
       
    65         /**
       
    66         * Initialize Tag Select Notification object 
       
    67         * @since 2.0
       
    68         * @return no return value.
       
    69         */ 
       
    70         IMPORT_C void InitializeL();
       
    71 
       
    72         /**
       
    73         * Get a Pointer to Tag Select Notification object.
       
    74         * @since 2.0
       
    75         * @return MNssTagSelectNotification* Pointer to the MNssTagSelectNotification
       
    76 		*                                 object.
       
    77         */ 
       
    78         IMPORT_C MNssTagSelectNotification* GetTagSelectNotification();
       
    79 
       
    80     private:
       
    81 
       
    82         /**
       
    83         * Constructor. 
       
    84         */ 
       
    85         CNssSelectNotificationBuilder();
       
    86 
       
    87     private:    // Data
       
    88 
       
    89 		// Pointer to the Tag Select Notification object.
       
    90         CNssTagSelectNotification* iTagSelectNotification;
       
    91 
       
    92     };
       
    93 
       
    94 #endif      // CNSSSELECTNOTIFICATIONBUILDER_H
       
    95 
       
    96 // End of File