vmbx/vmbxcpplugin/inc/vmbxcpplugin.h
changeset 13 e32024264ebb
parent 12 ae8abd0db65c
child 19 e44a8c097b15
--- a/vmbx/vmbxcpplugin/inc/vmbxcpplugin.h	Fri Mar 19 09:40:14 2010 +0200
+++ b/vmbx/vmbxcpplugin/inc/vmbxcpplugin.h	Fri Apr 16 15:31:58 2010 +0300
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (c) 2009 - 2010 Nokia Corporation and/or its subsidiary(-ies).
  * All rights reserved.
  * This component and the accompanying materials are made available
  * under the terms of "Eclipse Public License v1.0"
@@ -17,32 +17,33 @@
 #ifndef VMBXCPPLUGIN_H
 #define VMBXCPPLUGIN_H
 
+// System includes
 #include <qobject.h>
-#include <cppluginplatinterface.h>
+#include <cpplugininterface.h>
+
+// Forward declarations
 class CpItemDataHelper;
 
-class VmbxCpPlugin : public QObject, public CpPluginPlatInterface
+// Class declaration
+class VmbxCpPlugin : public QObject, public CpPluginInterface
 {
-Q_OBJECT
-    Q_INTERFACES(CpPluginPlatInterface)
+    Q_OBJECT
+    Q_INTERFACES(CpPluginInterface)
 public:
     /*!
-     * constructor
-     */
+        Constructor
+    */
     VmbxCpPlugin();
     /*!
-     * destructor
-     */
+        Destructor
+    */
     ~VmbxCpPlugin();
-    /*!
-     * from the Basic class CpPluginPlatInterface
-     * see class CpPluginPlatInterface
-     */
-    int uid() const;
 
     /*!
-     * 
-     */
-    CpSettingFormItemData *createSettingFormItemData( CpItemDataHelper &itemDataHelper ) const;
+        From base class CpPluginInterface
+        Form more information please check the base class.
+    */
+    virtual QList<CpSettingFormItemData *> createSettingFormItemData(
+        CpItemDataHelper &itemDataHelper) const;
 };
 #endif // VMBXCPPLUGIN_H