messagingapp/msgui/conversationview/inc/msgviewutils.h
changeset 31 ebfee66fde93
parent 23 238255e8b033
child 56 f42d9a78f435
equal deleted inserted replaced
30:6a20128ce557 31:ebfee66fde93
       
     1 /*
       
     2  * Copyright (c) 2009 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:
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef MSGVIEWUTILS_H
       
    19 #define MSGVIEWUTILS_H
       
    20 
       
    21 // INCLUDES
       
    22 #include <apgcli.h>
       
    23 #include <apmstd.h>
       
    24 #include <f32file.h>
       
    25 
       
    26 #include <e32std.h>
       
    27 #include <e32base.h>
       
    28 #include <QString>
       
    29 
       
    30 // FORWARD DECLARATIONS
       
    31 
       
    32 // CLASS DECLARATION
       
    33 
       
    34 /**
       
    35  * MsgViewUtils
       
    36  *
       
    37  * This class is a utility for the conversationview.
       
    38  *
       
    39  */
       
    40 class MsgViewUtils
       
    41 {
       
    42 public:
       
    43 
       
    44     /**
       
    45      * Constructor
       
    46      */
       
    47     MsgViewUtils();
       
    48 
       
    49     /**
       
    50      * Destructor.
       
    51      */
       
    52     ~MsgViewUtils();
       
    53 
       
    54     /*
       
    55      * get the mime type
       
    56      * @param fileName for which mime type to find
       
    57      */
       
    58     QString mimeTypeL(QString fileName);
       
    59 
       
    60 private:
       
    61     // Data
       
    62 
       
    63 };
       
    64 
       
    65 #endif // MSGVIEWUTILS_H
       
    66 //EOF