vmbx/vmbxengine/inc/vmbshandler.h
branchRCL_3
changeset 20 987c9837762f
parent 19 7d48bed6ce0c
child 21 0a6dd2dc9970
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
     1 /*
       
     2 * Copyright (c) 2007-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:  Branding for voice mailbox
       
    15  *
       
    16 */
       
    17 
       
    18 #ifndef C_VMBSHANDLER_H
       
    19 #define C_VMBSHANDLER_H
       
    20 
       
    21 // INCLUDES
       
    22 #include <e32std.h>
       
    23 #include <e32base.h>
       
    24 
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 
       
    28 
       
    29 // CLASS DECLARATION
       
    30 
       
    31 /**
       
    32  *  CVmBSHandler declaration.
       
    33  *
       
    34  */
       
    35 NONSHARABLE_CLASS( CVmBSHandler ) : public CBase
       
    36     {
       
    37 
       
    38 public: // Constructors and destructor
       
    39 
       
    40     /**
       
    41     * Two-phased constructor.
       
    42     */
       
    43     static CVmBSHandler* NewL();
       
    44 
       
    45     /**
       
    46      * Two-phased constructor.
       
    47      */
       
    48     static CVmBSHandler* NewLC();
       
    49 
       
    50     /**
       
    51      * Destructor.
       
    52      */
       
    53     virtual ~CVmBSHandler();
       
    54 
       
    55 public: // New functions
       
    56 
       
    57     /**
       
    58      * Get branded icon
       
    59      * @param aBrandingId Brandind Id
       
    60      * @param aBrandedBitmap Bitmap for branded icon
       
    61      * @param aBrandedBitmapMask Mask to branded icon
       
    62      */
       
    63 //     void GetBrandedIconL( const TDesC8& aBrandingId,
       
    64 //                           CFbsBitmap*& aBrandedBitmap,
       
    65 //                           CFbsBitmap*& aBrandedBitmapMask ) const;
       
    66 
       
    67 private:
       
    68 
       
    69     /**
       
    70      * C++ default constructor.
       
    71      */
       
    72     CVmBSHandler();
       
    73 
       
    74     /**
       
    75      * By default Symbian 2nd phase constructor is private.
       
    76      */
       
    77     void ConstructL();
       
    78 
       
    79     };
       
    80 
       
    81 #endif // C_VMBSHANDLER_H
       
    82 
       
    83 // End of file