okular/shell/okular_main.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
701 B
C
Raw Normal View History

2021-05-24 07:25:56 +00:00
/*
SPDX-FileCopyrightText: 2002 Wilco Greven <greven@kde.org>
SPDX-FileCopyrightText: 2003 Christophe Devriese <Christophe.Devriese@student.kuleuven.ac.be>
2021-05-24 07:25:56 +00:00
SPDX-FileCopyrightText: 2003 Laurent Montel <montel@kde.org>
SPDX-FileCopyrightText: 2003-2007 Albert Astals Cid <aacid@kde.org>
SPDX-FileCopyrightText: 2004 Andy Goossens <andygoossens@telenet.be>
SPDX-License-Identifier: GPL-2.0-or-later
*/
2018-08-31 09:23:45 +00:00
#ifndef _OKULAR_MAIN_H_
#define _OKULAR_MAIN_H_
#include <QStringList>
namespace Okular
{
enum Status { Error, AttachedOtherProcess, Success };
Status main(const QStringList &paths, const QString &serializedOptions);
}
2018-08-31 09:23:45 +00:00
#endif
/* kate: replace-tabs on; indent-width 4; */