Added missing comments.
authorJussi Laitinen <jupe@l3l7588.ixonos.local>
Fri, 3 Sep 2010 09:05:51 +0000 (12:05 +0300)
committerJussi Laitinen <jupe@l3l7588.ixonos.local>
Fri, 3 Sep 2010 09:05:51 +0000 (12:05 +0300)
src/engine/contactmanager.h
src/engine/contactmanagerprivate.h
src/engine/contactmanagerprivatestub.h
src/ui/ossoabookdialog.h

index cdca367..1539866 100644 (file)
@@ -6,6 +6,9 @@
 
 class ContactManagerPrivate;
 
+/**
+* @brief Manages phone address book contacts.
+*/
 class ContactManager : public QObject
 {
     Q_OBJECT
@@ -15,6 +18,11 @@ public:
     */
     friend class ContactManagerPrivate;
 
+    /**
+    * @brief Constructor
+    *
+    * @param parent QObject
+    */
     ContactManager(QObject *parent = 0);
 
 /*******************************************************************************
index 9a59127..ba4223a 100644 (file)
@@ -9,11 +9,19 @@ class ContactManager;
 
 QTM_USE_NAMESPACE
 
+/**
+* @brief Manages phone address book contacts.
+*/
 class ContactManagerPrivate : public QObject
 {
     Q_OBJECT
 
 public:
+    /**
+    * @brief Constructor
+    *
+    * @param parent QObject
+    */
     ContactManagerPrivate(QObject *parent = 0);
 
 /*******************************************************************************
@@ -48,9 +56,9 @@ private:
 * DATA MEMBERS
 ******************************************************************************/
 private:
-    ContactManager *m_parent;   ///< Parent
-    QContactManager *m_manager; ///< Contact manager
-    QHash<QString, QString> m_contactGuids;
+    ContactManager *m_parent;               ///< Parent
+    QContactManager *m_manager;             ///< Contact manager
+    QHash<QString, QString> m_contactGuids; ///< List of contact GUIDS
 };
 
 #endif // CONTACTMANAGERPRIVATE_H
index b8abb1c..191912c 100644 (file)
@@ -3,10 +3,20 @@
 
 #include <QObject>
 
+/**
+* @brief Manages phone address book contacts.
+*
+* STUB CLASS.
+*/
 class ContactManagerPrivate : public QObject
 {
     Q_OBJECT
 public:
+    /**
+    * @brief Constructor
+    *
+    * @param parent QObject
+    */
     ContactManagerPrivate(QObject *parent = 0);
 
 /*******************************************************************************
index 21dc94c..c3bf793 100644 (file)
@@ -7,10 +7,18 @@
 #undef signals // Collides with GTK symbols
 #include <libosso-abook/osso-abook.h>
 
+/**
+* @brief Shows contact dialog.
+*/
 class OssoABookDialog : public QObject
 {
     Q_OBJECT
 public:
+    /**
+    * @brief Constructor
+    *
+    * @param parent QObject
+    */
     OssoABookDialog(QObject *parent = 0);
 
 /*******************************************************************************