mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
045b4a3df7
Here comes the big copyright patch for kpdf, i've updated all files to have a copyright header, some did not have, and some had very diferent structures. Now all of them have the same structure Copyright (C) years name <mail> The names that figure in the copyright header are all the ones of people that ever comitted something to that particular file. I am CC'ing to all of you because maybe someone thinks his commits was so small that does not want the copyright for it, so go to the particular file and remove your line. Also if a particular file came from other place and you know the copyright holder of it please add it to the headers. CCMAIL:greven@kde.org CCMAIL:Christophe.Devriese@student.kuleuven.ac.be CCMAIL:montel@kde.org CCMAIL:mueller@kde.org CCMAIL:kde@jamesots.com CCMAIL:kpfeifle@danka.de CCMAIL:ccheney@cheney.cx CCMAIL:malcolm.hunter@gmx.co.uk CCMAIL:molkentin@kde.org CCMAIL:andygoossens@telenet.be CCMAIL:devriese@kde.org CCMAIL:crossfire@babylon2k.de CCMAIL:stampede@coltec.ufmg.br CCMAIL:bastian@kde.org CCMAIL:binner@kde.org CCMAIL:benjamin@csh.rit.edu CCMAIL:l.lunak@kde.org CCMAIL:wheeler@kde.org CCMAIL:kloecker@kde.org CCMAIL:will@csociety.org CCMAIL:helio@conectiva.com.br svn path=/trunk/kdegraphics/kpdf/; revision=341561
26 lines
869 B
C++
26 lines
869 B
C++
/***************************************************************************
|
|
* Copyright (C) 2004 by Albert Astals Cid <tsdgeos@terra.es> *
|
|
* *
|
|
* 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 KPDF_ERROR_H
|
|
#define KPDF_ERROR_H
|
|
|
|
#include <qstringlist.h>
|
|
|
|
class errors
|
|
{
|
|
public:
|
|
static void add(const QString &s);
|
|
static bool exists(const QString &s);
|
|
static void clear();
|
|
|
|
private:
|
|
static QStringList p_errors;
|
|
};
|
|
|
|
#endif
|