/usr/include/libkeduvocdocument/keduvoclesson.h is in libkeduvocdocument-dev 4:15.12.3-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | /***************************************************************************
Copyright 2007 Jeremy Whiting <jpwhiting@kde.org>
Copyright 2007 Frederik Gladhorn <frederik.gladhorn@kdemail.net>
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef KEDUVOCLESSON_H
#define KEDUVOCLESSON_H
#include "keduvocdocument_export.h"
#include "keduvoccontainer.h"
class KEduVocExpression;
/** class to store information about a lesson */
class KEDUVOCDOCUMENT_EXPORT KEduVocLesson :public KEduVocContainer
{
public:
/** default constructor */
explicit KEduVocLesson(const QString& name, KEduVocContainer *parent = 0);
// void appendChildLesson(KEduVocLesson *child);
// QList<KEduVocLesson *> childLessons();
// KEduVocLesson *childLesson(int row);
// int childLessonCount() const;
// int row() const;
// KEduVocLesson *parent();
/** copy constructor for d-pointer safe copying */
KEduVocLesson( const KEduVocLesson &other );
/** destructor */
~KEduVocLesson();
/** assignment operator */
KEduVocLesson& operator= ( const KEduVocLesson& );
KEduVocExpression* entry(int row, EnumEntriesRecursive recursive = NotRecursive);
/** get a list of all entries in the lesson */
QList < KEduVocExpression* > entries(EnumEntriesRecursive recursive = NotRecursive);
/** get the number of entries in the lesson */
int entryCount(EnumEntriesRecursive recursive = NotRecursive);
/** append an entry to the lesson
* @param entryid id of the entry to add
*/
void appendEntry(KEduVocExpression* entry);
/**
* insert an entry at a specific position
* @param index
* @param entry
*/
void insertEntry(int index, KEduVocExpression* entry);
/** remove an entry from the lesson
* @param entryid id of the entry to remove
*/
void removeEntry(KEduVocExpression* entry);
private:
friend class KEduVocDocument;
// This constructor is used by KEduVocDocument when creating the top level lesson.
explicit KEduVocLesson(const QString& name, KEduVocDocument *document);
private:
class Private;
Private * const d;
};
#endif
|