*/
//void moveLesson(int from, int to);
+
+
+
+
+/// @todo move conjugation to personal pronouns, move that into identifier!
// *** conjugation methods ***
/**
*/
int conjugationCount() const;
+
+
+///@todo move into identifier!
// *** article methods ***
/**
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: