| 1 | /*************************************************************************** |
|---|
| 2 | tmdmprocessor.h |
|---|
| 3 | ------------------- |
|---|
| 4 | copyright : (C) 2013 CREALP Lucien Schreiber |
|---|
| 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 |
|---|
| 23 | #include <wx/filename.h> |
|---|
| 24 | #include <wx/wfstream.h> |
|---|
| 25 | #include <wx/txtstrm.h> |
|---|
| 26 | |
|---|
| 27 | |
|---|
| 28 | class TmDmCopier; |
|---|
| 29 | class TmDmProcessor { |
|---|
| 30 | protected: |
|---|
| 31 | wxFileName m_FileSrc; |
|---|
| 32 | wxFileName m_FileDst; |
|---|
| 33 | |
|---|
| 34 | public: |
|---|
| 35 | TmDmProcessor(const wxFileName & src, const wxFileName & dest); |
|---|
| 36 | virtual ~TmDmProcessor(); |
|---|
| 37 | |
|---|
| 38 | int FindBlock(const wxString & blockname); |
|---|
| 39 | virtual bool ProcessBlock(int blockstart) = 0; |
|---|
| 40 | }; |
|---|
| 41 | |
|---|
| 42 | |
|---|
| 43 | |
|---|
| 44 | |
|---|
| 45 | |
|---|
| 46 | |
|---|
| 47 | |
|---|
| 48 | class TmDmProcessorSimple : public TmDmProcessor { |
|---|
| 49 | public: |
|---|
| 50 | TmDmProcessorSimple(const wxFileName & src, const wxFileName & dest); |
|---|
| 51 | virtual ~TmDmProcessorSimple(); |
|---|
| 52 | |
|---|
| 53 | virtual bool ProcessBlock(int blockstart); |
|---|
| 54 | }; |
|---|
| 55 | |
|---|
| 56 | |
|---|
| 57 | |
|---|
| 58 | |
|---|
| 59 | |
|---|
| 60 | |
|---|
| 61 | |
|---|
| 62 | class TmDmProcessorAttributs : public TmDmProcessor { |
|---|
| 63 | public: |
|---|
| 64 | TmDmProcessorAttributs(const wxFileName & src, const wxFileName & dest); |
|---|
| 65 | virtual ~TmDmProcessorAttributs(); |
|---|
| 66 | |
|---|
| 67 | virtual bool ProcessBlock(int blockstart); |
|---|
| 68 | }; |
|---|
| 69 | #endif |
|---|