~ubuntu-branches/ubuntu/precise/koffice/precise

« back to all changes in this revision

Viewing changes to tools/kfile-plugins/abiword/kfile_abiword.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2006-04-20 21:38:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060420213853-j5lxluqvymxt2zny
Tags: 1:1.5.0-0ubuntu2
UbuntuĀ uploadĀ 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of the KDE project
 
2
 * Copyright (C) 2005 Laurent Montel montel@kde.org
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public
 
6
 * License as published by the Free Software Foundation version 2.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
 * General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program; see the file COPYING.  If not, write to
 
15
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
16
 * Boston, MA 02110-1301, USA.
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef __KFILE_ABIWORD_H__
 
21
#define __KFILE_ABIWORD_H__
 
22
 
 
23
#include <kfilemetainfo.h>
 
24
 
 
25
class QStringList;
 
26
class QDomNode;
 
27
 
 
28
class AbiwordPlugin: public KFilePlugin
 
29
{
 
30
    Q_OBJECT
 
31
 
 
32
public:
 
33
    AbiwordPlugin( QObject *parent, const char *name, const QStringList& args );
 
34
 
 
35
    virtual bool readInfo( KFileMetaInfo& info, uint what);
 
36
 
 
37
private:
 
38
    void init();
 
39
    QString stringItem( const QString &name );
 
40
};
 
41
 
 
42
#endif