source: trunk/tmdmcreator/src/tmdmprocessor.cpp @ 16

Revision 16, 1.5 KB checked in by lucsch, 11 years ago (diff)

Copying Base and User SQL files into output file is now working

RevLine 
[15]1/***************************************************************************
2 tmdmprocessor.cpp
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
17#include "tmdmprocessor.h"
18#include "tmdmcopier.h"
19
20TmDmProcessor::TmDmProcessor() {
21}
22
[16]23
24
[15]25TmDmProcessor::~TmDmProcessor() {
26}
27
[16]28
29
[15]30int TmDmProcessor::FindBlock(const wxString & blockname) {
[16]31    return wxNOT_FOUND;
[15]32}
33
[16]34
35
36
37
38
39
40
[15]41TmDmProcessorSimple::TmDmProcessorSimple() {
42}
43
[16]44
45
[15]46TmDmProcessorSimple::~TmDmProcessorSimple() {
47}
48
[16]49
50
[15]51bool TmDmProcessorSimple::ProcessBlock(int blockstart, TmDmCopier * copier) {
[16]52    return false;
[15]53}
54
[16]55
56
57
58
59
60
61
62
[15]63TmDmProcessorAttributs::TmDmProcessorAttributs() {
64}
65
66TmDmProcessorAttributs::~TmDmProcessorAttributs() {
67}
68
69bool TmDmProcessorAttributs::ProcessBlock(int blockstart, TmDmCopier * copier) {
[16]70    return false;
[15]71}
72
Note: See TracBrowser for help on using the repository browser.