connectionmonitoring/cellularindicatorplugin/inc/cellularindicatorplugin.h
changeset 53 4af712113915
parent 47 cb7afde124a3
equal deleted inserted replaced
47:cb7afde124a3 53:4af712113915
    20 
    20 
    21 #include <hbindicatorplugininterface.h>
    21 #include <hbindicatorplugininterface.h>
    22 #include <hbindicatorinterface.h>
    22 #include <hbindicatorinterface.h>
    23 #include <QtCore/QProcess>
    23 #include <QtCore/QProcess>
    24 #include <QtCore/QVariant>
    24 #include <QtCore/QVariant>
       
    25 #include <QSharedPointer>
    25 
    26 
       
    27 // Forward declarations
       
    28 class HbTranslator;
    26 
    29 
    27 /**
    30 /**
    28  * This class describes cellular indicator plug-in
    31  * This class describes cellular indicator plug-in
    29  */
    32  */
    30 class CellularIndicatorPlugin : public HbIndicatorInterface,
    33 class CellularIndicatorPlugin : public HbIndicatorInterface,
    79     int mError;
    82     int mError;
    80     // Used to store the connection info
    83     // Used to store the connection info
    81     QVariant mParameter;
    84     QVariant mParameter;
    82     // Process to start external programs
    85     // Process to start external programs
    83     QProcess process;
    86     QProcess process;
       
    87     
       
    88     // Translator for the localisation Text Id's
       
    89     QSharedPointer<HbTranslator> mTranslator;
       
    90 
    84 };
    91 };
    85 
    92 
    86 
    93 
    87 
    94 
    88 
    95