1/*
2 *
3 * kPPP: A pppd front end for the KDE project
4 *
5 * $Id$
6 *
7 * (c) 1998 Mario Weilguni <mweilguni@kde.org>
8 *
9 * Copyright (C) 1997 Bernd Johannes Wuebben
10 * wuebben@math.cornell.edu
11 *
12 * based on EzPPP:
13 * Copyright (C) 1997 Jay Painter
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU Library General Public
17 * License as published by the Free Software Foundation; either
18 * version 2 of the License, or (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 * Library General Public License for more details.
24 *
25 * You should have received a copy of the GNU Library General Public
26 * License along with this program; if not, write to the Free
27 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
28 */
29
30#ifndef __PPPL__H__
31#define __PPPL__H__
32
33class QStringList;
34
35int PPPL_MakeLog(QStringList &list);
36void PPPL_AnalyseLog(QStringList &list, QStringList &result);
37void PPPL_ShowLog();
38
39#endif
40
41