]> Git trees. - libqmvoc.git/commitdiff
Apidox++
authorFrederik Gladhorn <gladhorn@kde.org>
Thu, 30 Aug 2007 10:29:09 +0000 (10:29 +0000)
committerFrederik Gladhorn <gladhorn@kde.org>
Thu, 30 Aug 2007 10:29:09 +0000 (10:29 +0000)
svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=706412

keduvocdocument/keduvocdocument.h
keduvocdocument/keduvocidentifier.h

index 74cd020bcb49551b1393edcee224d38f1ae3ef98..685b19c98391acba68bcfc04c5cdd12108a2eeba 100644 (file)
@@ -491,6 +491,11 @@ public:
      */
     //void moveLesson(int from, int to);
 
+
+
+
+
+/// @todo move conjugation to personal pronouns, move that into identifier!
     // *** conjugation methods ***
 
     /**
@@ -512,6 +517,9 @@ public:
     */
     int conjugationCount() const;
 
+
+
+///@todo move into identifier!
     // *** article methods ***
 
     /**
index 32ecd7133e0efcb310f909f316fd22526947de51..1b48201308710635b75672b0dad2ad29ff1b64f9 100644 (file)
@@ -41,14 +41,50 @@ Class to store meta information about a language or any other category in the vo
 class KEDUVOCDOCUMENT_EXPORT KEduVocIdentifier
 {
 public:
-    KEduVocIdentifier();
+    /**
+     * Default ctor.
+     */
+    explicit KEduVocIdentifier();
+
+    /**
+     * Copy ctor.
+     * @param other
+     */
     KEduVocIdentifier( const KEduVocIdentifier &other );
+
+    /**
+     * dtor
+     */
     ~KEduVocIdentifier();
+
+    /**
+     * assignment operator
+     * @param other
+     * @return
+     */
     KEduVocIdentifier& operator= ( const KEduVocIdentifier &other );
+public:
 
+    /**
+     * Name of this identifier. (English, Anatomy, Fruit salad...)
+     * @return name
+     */
     QString name() const;
+    /**
+     * Set the name
+     * @param name
+     */
     void setName( const QString& name );
+
+    /**
+     * The locale of the contents: en, de, es, ...
+     * @return locale
+     */
     QString locale() const;
+    /**
+     * Set the locale
+     * @param name
+     */
     void setLocale( const QString& name );
 
 private: