/usr/include/libkdeedu/keduvocconjugation.h is in libkdeedu-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 88 89 90 91 | /***************************************************************************
C++ Interface: keduvocconjugation
-----------------------------------------------------------------------
begin : Di Aug 28 2007
copyright : (C) 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 KEDUVOCCONJUGATION_H
#define KEDUVOCCONJUGATION_H
#include "libkeduvocdocument_export.h"
#include "keduvoctext.h"
#include "keduvocwordflags.h"
#include <QtCore/QStringList>
/**
* The conjugation of a verb
*/
class KEDUVOCDOCUMENT_EXPORT KEduVocConjugation
{
public:
/**
* The constructor
*/
explicit KEduVocConjugation();
KEduVocConjugation( const KEduVocConjugation& rhs );
~KEduVocConjugation();
KEduVocConjugation& operator = ( const KEduVocConjugation& a );
bool operator == ( const KEduVocConjugation& a ) const;
/**
* Returns an existing conjugation object. It is an error and leads to undefined behaviour
* to call this method with flags which are not in the list returned by keys().
*
* BCI: return a pointer instead of a reference.
*
* @param flags Flags obtained by a previous call to keys()
* @return The existing conjugation object with the specified properties
*/
KEduVocText& conjugation(KEduVocWordFlags flags) const;
/**
* Updates or creates the conjugation object for the given word flags.
*/
void setConjugation(const KEduVocText& conjugation, KEduVocWordFlags flags);
QList<KEduVocWordFlags> keys();
bool isEmpty();
/**
* Create xml for this declension
* @param parent
*/
void toKVTML2(QDomElement& parent, const QString &tense);
/**
* Reads a declension from xml, returns 0 if it is empty
* @param parent
* @return
*/
static KEduVocConjugation* fromKVTML2(QDomElement& parent);
private:
class Private;
Private* const d;
};
#endif // KEDUVOCCONJUGATION_H
|