voiceui/vcommand/inc/accessorybuttonmonitor.h
branchRCL_3
changeset 18 cad71a31b7fc
parent 17 8ce15fced3a6
child 19 e36f3802f733
equal deleted inserted replaced
17:8ce15fced3a6 18:cad71a31b7fc
     1 /*
       
     2 * Copyright (c) 2006 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:  Definition of CVCAccessoryButtonMonitor
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef ACCESSORYBUTTONMONITOR_H
       
    21 #define ACCESSORYBUTTONMONITOR_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29 *  @app VCommand.exe
       
    30 */
       
    31 class CVCAccessoryButtonMonitor : public CBase
       
    32     {
       
    33     public:  // Constructors and destructor
       
    34         
       
    35         /**
       
    36         * Two-phased constructor.
       
    37         */
       
    38         static CVCAccessoryButtonMonitor* NewL();
       
    39         
       
    40         /**
       
    41         * Destructor.
       
    42         */
       
    43         virtual ~CVCAccessoryButtonMonitor();
       
    44 
       
    45     public: // New functions
       
    46         
       
    47      
       
    48     public: // Functions from base classes
       
    49 
       
    50         
       
    51     private:
       
    52 
       
    53         /**
       
    54         * C++ default constructor.
       
    55         */
       
    56         CVCAccessoryButtonMonitor();
       
    57 
       
    58         /**
       
    59         * By default Symbian 2nd phase constructor is private.
       
    60         */
       
    61         void ConstructL();
       
    62 
       
    63     private:    // Data
       
    64 
       
    65     };
       
    66 
       
    67 #endif      // ACCESSORYBUTTONMONITOR_H
       
    68             
       
    69 // End of File