Download this file
48 lines (35 with data), 844 Bytes
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
36
37
38
39
40
41
42
43
44
45
46
47 | #ifndef IMPORTS_H
#define IMPORTS_H
#include <qdir.h>
#include <qstring.h>
#include <iostream>
#include "settings.h"
///////////////////////////////////////////////////////////////////////
class ImportBase
{
public:
ImportBase();
virtual ~ImportBase();
virtual void setDir(const QString &);
virtual void setFile(const QString &);
virtual bool transform();
virtual QString getTransformedFile();
protected:
QDir tmpDir;
QString inputDir;
QString inputFile;
QString transformedFile;
};
///////////////////////////////////////////////////////////////////////
class ImportFirefoxBookmarks:public ImportBase
{
public:
bool transform();
};
///////////////////////////////////////////////////////////////////////
class ImportMM:public ImportBase
{
public:
bool transform();
};
#endif
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.