ToolMap
Loading...
Searching...
No Matches
tmattributionbasicarray.h
1
/***************************************************************************
2
tmattributionbasicarray.cpp
3
An array for storing basic attributions values
4
-------------------
5
copyright : (C) 2009 CREALP Lucien Schreiber
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
// comment doxygen
18
19
#ifndef _TM_ATTRIBUTION_BASIC_ARRAY_H_
20
#define _TM_ATTRIBUTION_BASIC_ARRAY_H_
21
22
// For compilers that support precompilation, includes "wx/wx.h".
23
#include <wx/wxprec.h>
24
25
// Include wxWidgets' headers
26
#ifndef WX_PRECOMP
27
#include <wx/wx.h>
28
#endif
29
30
class
tmAttributionBasic
:
public
wxObject {
31
private
:
32
void
InitMemberValues();
33
34
public
:
35
// ctor - dtor
36
tmAttributionBasic
();
37
38
~tmAttributionBasic
();
39
40
long
m_Oid;
41
wxArrayLong m_Values;
42
};
43
44
WX_DECLARE_OBJARRAY(
tmAttributionBasic
, tmAttributionBasicArray);
45
46
class
tmLayerValue
:
public
wxObject {
47
private
:
48
void
InitMemberValues();
49
50
public
:
51
tmLayerValue
();
52
53
~tmLayerValue
();
54
55
long
m_Oid;
56
wxString m_Value;
57
};
58
59
WX_DECLARE_OBJARRAY(
tmLayerValue
, tmLayerValueArray);
60
61
#endif
tmAttributionBasic
Definition
tmattributionbasicarray.h:30
tmLayerValue
Definition
tmattributionbasicarray.h:46
src
gis
tmattributionbasicarray.h
Generated by
1.9.8