#define MAX_MULTIPLE_CHOICE 5 // select one out of x
-class KEduVocMultipleChoicePrivate;
+
class KEDUVOCDOCUMENT_EXPORT KEduVocMultipleChoice
{
KEduVocMultipleChoice();
KEduVocMultipleChoice(const KEduVocMultipleChoice &other);
KEduVocMultipleChoice (const QStringList &choices);
-
+
~KEduVocMultipleChoice();
-
+
void setChoices (const QStringList &choices);
QStringList choices() const;
unsigned size();
bool operator==(const KEduVocMultipleChoice &choice) const;
-
+
KEduVocMultipleChoice &operator=(const KEduVocMultipleChoice &other);
private:
-
- KEduVocMultipleChoicePrivate * const d;
+ class KEduVocMultipleChoicePrivate;
+ KEduVocMultipleChoicePrivate * const d;
};