summaryrefslogtreecommitdiff
path: root/noncore/tools/pimconverter/converter.h
Unidiff
Diffstat (limited to 'noncore/tools/pimconverter/converter.h') (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/tools/pimconverter/converter.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/noncore/tools/pimconverter/converter.h b/noncore/tools/pimconverter/converter.h
new file mode 100755
index 0000000..27d7fb2
--- a/dev/null
+++ b/noncore/tools/pimconverter/converter.h
@@ -0,0 +1,40 @@
1#ifndef _CONVERTER_H_
2#define _CONVERTER_H_
3
4
5#include "converter_base.h"
6
7
8class Converter: public converter_base {
9public:
10 Converter();
11
12 // Slots defined in the ui-description file
13 void start_conversion();
14 void selectedDatabase( int num );
15 void selectedDestFormat( int num );
16 void selectedSourceFormat( int num );
17
18private:
19 // Caution:
20 // The order and value of the following enums must be regarding
21 // the predefinition in the UI-File !!
22 enum DataBases{
23 ADDRESSBOOK = 0,
24 TODOLIST = 1,
25 DATEBOOK = 2,
26 };
27
28 enum DbFormats{
29 XML = 0,
30 SQL = 1,
31 };
32
33 int m_selectedDatabase;
34 int m_selectedSourceFormat;
35 int m_selectedDestFormat;
36
37};
38
39
40#endif