vmbx/vmbxcpplugin/inc/vmbxcpplugin.h
changeset 12 ae8abd0db65c
child 13 e32024264ebb
equal deleted inserted replaced
0:ff3b6d0fd310 12:ae8abd0db65c
       
     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 #ifndef VMBXCPPLUGIN_H
       
    18 #define VMBXCPPLUGIN_H
       
    19 
       
    20 #include <qobject.h>
       
    21 #include <cppluginplatinterface.h>
       
    22 class CpItemDataHelper;
       
    23 
       
    24 class VmbxCpPlugin : public QObject, public CpPluginPlatInterface
       
    25 {
       
    26 Q_OBJECT
       
    27     Q_INTERFACES(CpPluginPlatInterface)
       
    28 public:
       
    29     /*!
       
    30      * constructor
       
    31      */
       
    32     VmbxCpPlugin();
       
    33     /*!
       
    34      * destructor
       
    35      */
       
    36     ~VmbxCpPlugin();
       
    37     /*!
       
    38      * from the Basic class CpPluginPlatInterface
       
    39      * see class CpPluginPlatInterface
       
    40      */
       
    41     int uid() const;
       
    42 
       
    43     /*!
       
    44      * 
       
    45      */
       
    46     CpSettingFormItemData *createSettingFormItemData( CpItemDataHelper &itemDataHelper ) const;
       
    47 };
       
    48 #endif // VMBXCPPLUGIN_H