You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.3 KiB
32 lines
1.3 KiB
/*************************************************************************** |
|
* Copyright (C) 2002 by Wilco Greven <greven@kde.org> * |
|
* Copyright (C) 2003 by Christophe Devriese * |
|
* <Christophe.Devriese@student.kuleuven.ac.be> * |
|
* Copyright (C) 2003 by Laurent Montel <montel@kde.org> * |
|
* Copyright (C) 2003-2007 by Albert Astals Cid <aacid@kde.org> * |
|
* Copyright (C) 2004 by Andy Goossens <andygoossens@telenet.be> * |
|
* * |
|
* 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 _OKULAR_MAIN_H_ |
|
#define _OKULAR_MAIN_H_ |
|
|
|
class QString; |
|
class QStringList; |
|
|
|
namespace Okular |
|
{ |
|
|
|
enum Status { Error, AttachedOtherProcess, Success }; |
|
|
|
Status main(const QStringList &paths, const QString &serializedOptions); |
|
|
|
} |
|
|
|
#endif |
|
|
|
/* kate: replace-tabs on; indent-width 4; */
|
|
|