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