[15] | 1 | /*************************************************************************** |
---|
| 2 | tmdmprocessor.h |
---|
| 3 | ------------------- |
---|
[16] | 4 | copyright : (C) 2013 CREALP Lucien Schreiber |
---|
[15] | 5 | email : lucien.schreiber at crealp dot vs dot ch |
---|
| 6 | ***************************************************************************/ |
---|
| 7 | |
---|
| 8 | /*************************************************************************** |
---|
| 9 | * * |
---|
| 10 | * This program is free software; you can redistribute it and/or modify * |
---|
| 11 | * it under the terms of the GNU General Public License as published by * |
---|
| 12 | * the Free Software Foundation; either version 2 of the License, or * |
---|
| 13 | * (at your option) any later version. * |
---|
| 14 | * * |
---|
| 15 | ***************************************************************************/ |
---|
| 16 | #ifndef _TMDMPROCESSOR_H_ |
---|
| 17 | #define _TMDMPROCESSOR_H_ |
---|
| 18 | |
---|
| 19 | #include "wx/wxprec.h" |
---|
| 20 | #ifndef WX_PRECOMP |
---|
| 21 | #include <wx/wx.h> |
---|
| 22 | #endif |
---|
[17] | 23 | #include <wx/filename.h> |
---|
| 24 | #include <wx/wfstream.h> |
---|
| 25 | #include <wx/txtstrm.h> |
---|
[18] | 26 | #include <wx/tokenzr.h> |
---|
[15] | 27 | |
---|
[17] | 28 | |
---|
[15] | 29 | class TmDmCopier; |
---|
| 30 | class TmDmProcessor { |
---|
[16] | 31 | protected: |
---|
[17] | 32 | wxFileName m_FileSrc; |
---|
| 33 | wxFileName m_FileDst; |
---|
[16] | 34 | |
---|
| 35 | public: |
---|
[17] | 36 | TmDmProcessor(const wxFileName & src, const wxFileName & dest); |
---|
[16] | 37 | virtual ~TmDmProcessor(); |
---|
| 38 | |
---|
| 39 | int FindBlock(const wxString & blockname); |
---|
[18] | 40 | virtual bool ProcessBlock(int blockstart, const wxString & tablename) = 0; |
---|
[16] | 41 | }; |
---|
[15] | 42 | |
---|
| 43 | |
---|
| 44 | |
---|
| 45 | |
---|
| 46 | |
---|
| 47 | |
---|
[16] | 48 | |
---|
[15] | 49 | class TmDmProcessorSimple : public TmDmProcessor { |
---|
[16] | 50 | public: |
---|
[17] | 51 | TmDmProcessorSimple(const wxFileName & src, const wxFileName & dest); |
---|
[15] | 52 | virtual ~TmDmProcessorSimple(); |
---|
[16] | 53 | |
---|
[18] | 54 | virtual bool ProcessBlock(int blockstart, const wxString & tablename); |
---|
[16] | 55 | }; |
---|
[15] | 56 | |
---|
[16] | 57 | |
---|
| 58 | |
---|
| 59 | |
---|
| 60 | |
---|
| 61 | |
---|
| 62 | |
---|
[15] | 63 | class TmDmProcessorAttributs : public TmDmProcessor { |
---|
[19] | 64 | private: |
---|
| 65 | bool _ProcessAttributesName(int blockstart); |
---|
| 66 | bool _ProcessAttributesValues(int blockstart); |
---|
| 67 | |
---|
[16] | 68 | public: |
---|
[17] | 69 | TmDmProcessorAttributs(const wxFileName & src, const wxFileName & dest); |
---|
[15] | 70 | virtual ~TmDmProcessorAttributs(); |
---|
[16] | 71 | |
---|
[18] | 72 | virtual bool ProcessBlock(int blockstart, const wxString & tablename); |
---|
[15] | 73 | }; |
---|
| 74 | #endif |
---|