blob: 592283a78afe80a13ae29a57ada399db1382aa45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/***************************************************************************
kugarnopimport.h - description
-------------------
copyright : (C) 2002 by Joseph Wenninger
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License verstion 2 as *
* published by the Free Software Foundation *
* *
***************************************************************************/
#ifndef __KUGARNOPIMPORT_H__
#define __KUGARNOPIMPORT_H__
#include <KoFilter.h>
#include <tqcstring.h>
#include <tqstringlist.h>
class KugarNOPImport : public KoFilter
{
TQ_OBJECT
public:
KugarNOPImport( KoFilter *parent, const char *name, const TQStringList& );
virtual KoFilter::ConversionStatus convert( const TQCString& from, const TQCString& to );
};
#endif
|