source: trunk/tmdmcreator/src/tmdmcreator.cpp @ 15

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

Adding UML analysis and skeleton code

Line 
1/***************************************************************************
2 tmdmcreator.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 "tmdmcreator.h"
18
19tmdmcreator::tmdmcreator() {
20}
21
22
23
24tmdmcreator::~tmdmcreator() {
25}
26
27
28
29void tmdmcreator::SetBaseSQL(wxFileName value) {
30  m_FileNameBaseSQL = value;
31}
32
33
34
35void tmdmcreator::SetUserSQL(wxFileName value) {
36  m_FileNameUserSQL = value;
37}
38
39
40
41void tmdmcreator::SetUserContent(wxFileName value) {
42  m_FileNameUserContent = value;
43}
44
45
46
47void tmdmcreator::SetOutSQL(wxFileName value) {
48  m_FileNameOutSQL = value;
49}
50
51
52
53bool tmdmcreator::CheckFiles(wxArrayString & errormsg) {
54    return false;
55}
56
57
58
59bool tmdmcreator::ProcessFiles(wxArrayString & errorsmsg) {
60    return false;
61}
62
Note: See TracBrowser for help on using the repository browser.