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
30class tmAttributionBasic : public wxObject {
31 private:
32 void InitMemberValues();
33
34 public:
35 // ctor - dtor
37
39
40 long m_Oid;
41 wxArrayLong m_Values;
42};
43
44WX_DECLARE_OBJARRAY(tmAttributionBasic, tmAttributionBasicArray);
45
46class tmLayerValue : public wxObject {
47 private:
48 void InitMemberValues();
49
50 public:
52
54
55 long m_Oid;
56 wxString m_Value;
57};
58
59WX_DECLARE_OBJARRAY(tmLayerValue, tmLayerValueArray);
60
61#endif
Definition tmattributionbasicarray.h:30
Definition tmattributionbasicarray.h:46