~vbursian/research-assistant/intervers

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
////////////////////////////////////////////////////////////////////////////////
/*! @file StaticInitiators.cpp Initiates static members in right order.
- Part of RANet - Research Assistant Net Library (based on ANSI C++).
- Copyright(C) 2013-2015, Viktor E. Bursian, St.Petersburg, Russia.
                          Viktor_dot_Bursian_at_mail_dot_ioffe_dot_ru
*///////////////////////////////////////////////////////////////////////////////
#include "Log.h"
#include "Adam.h"
#include "Storable.h"
#include "Time.h"
#include "Color.h"
#include "Nodes.h"
#include "FolderNode.h"
#include "Units.h"
#include "PhysValue.h"
#include "Ranges.h"
#include "BasicNodes.h"
#include "FileNode.h"
#include "ColorNodes.h"
#include "Graphicals.h"
#include "Record.h"
#include "Curves.h"
#include "Marks.h"
#include "Functions.h"
#include "ArrayDataFunction.h"
#include "ListDataFunction.h"
#include "TableDataFunction.h"
#include "DataArrayFolder.h"
#include "DataListFolder.h"
#include "DataTableFolder.h"
#include "DataArrayRecord.h"
#include "DataListRecord.h"
#include "DataTableRecord.h"
#include "ExpressionNode.h"
#include "BasicMath.h"
#include "PhysMath.h"
#include "NetMath.h"
#include "Instrument.h"
#include "Device.h"
namespace RA {
//------------------------------------------------------------------------------

namespace RANet {

sLog                          Log;

} //namespace RANet

sTag::sTagMapByName   sTag::TagMapByName;
DEFINE_CLASS_TAG( sAdam )
DEFINE_CLASS_TAG( sStorable )
DEFINE_CLASS_TAG( sMathValue )
DEFINE_CLASS_TAG( sMathError )
DEFINE_CLASS_TAG( sRealValue )
DEFINE_CLASS_TAG( sIntegerValue )
DEFINE_CLASS_TAG(sTime)
DEFINE_CLASS_TAG(sColor)
DEFINE_CLASS_TAG(sColorSet)
DEFINE_CLASS_TAG( sNode )   //see more in Nodes.cpp
//DEFINE_CLASS_TAG( sNullNode )
//DEFINE_CLASS_TAG( sLostNode )
DEFINE_CLASS_TAG(sFolderNode)
DEFINE_CLASS_TAG(sUnit)
DEFINE_CLASS_TAG(sUnits)
DEFINE_CLASS_TAG(sPhysValue)
DEFINE_CLASS_TAG(sPhysRange)
DEFINE_CLASS_TAG(sTerminalNode)
DEFINE_CLASS_TAG(sBooleanNode)
DEFINE_CLASS_TAG(sIntegerNode)
DEFINE_CLASS_TAG(sByteArrayNode)
DEFINE_CLASS_TAG(sTextNode)
DEFINE_CLASS_TAG(sPhysValueNode)
DEFINE_CLASS_TAG(sPhysRangeNode)
DEFINE_CLASS_TAG(sFileNode)
DEFINE_CLASS_TAG(sColorNode)
DEFINE_CLASS_TAG(sColorSetNode)
DEFINE_CLASS_TAG(sPhysPair)
DEFINE_CLASS_TAG(sBoundaries)
DEFINE_CLASS_TAG(sAppearance)
DEFINE_CLASS_TAG(sGraphObject)
DEFINE_CLASS_TAG(sLineAppearance)
DEFINE_CLASS_TAG(sSpotAppearance)
DEFINE_CLASS_TAG(sPointAppearance)
DEFINE_CLASS_TAG(sRecord)
DEFINE_CLASS_TAG(sCurveAppearance)
DEFINE_CLASS_TAG(sCurve)
DEFINE_CLASS_TAG(sFunction)
DEFINE_CLASS_TAG(sDataFunction)
DEFINE_CLASS_TAG(sAnalyticFunction)
DEFINE_CLASS_TAG(sMark)
DEFINE_CLASS_TAG(sPositionMark)
DEFINE_CLASS_TAG(sXMark)
DEFINE_CLASS_TAG(sYMark)
DEFINE_CLASS_TAG(sPositionMarkAppearance)

//DEFINE_CLASS_TAG(sIntervalMark)
//DEFINE_CLASS_TAG(sXIntervalMark)
//DEFINE_CLASS_TAG(sYIntervalMark)
//DEFINE_CLASS_TAG(sBaselineMark)

DEFINE_CLASS_TAG(sArrayDataFunction)
DEFINE_CLASS_TAG(sListDataFunction)
DEFINE_CLASS_TAG(sTableDataFunction)
DEFINE_CLASS_TAG(sDataArrayFolder)
DEFINE_CLASS_TAG(sDataListFolder)
DEFINE_CLASS_TAG(sDataTableFolder)
DEFINE_CLASS_TAG(sDataArrayRecord)
DEFINE_CLASS_TAG(sDataListRecord)
DEFINE_CLASS_TAG(sDataTableRecord)
DEFINE_CLASS_TAG(sExpressionNode)

csUnits                       _Unitsless_;

csString          sMetricPrefix::StandardAllowance
                          ("Y..Z..E..P..T..G..M..k..0..m..u..n..p..f..a..z..y");
                         //"Y..Z..E..P..T..G..M..khd0dcm..u..n..p..f..a..z..y"

csString          sMetricPrefix::NoPrefixAllowed
                          ("-..-..-..-..-..-..-..-..0..-..-..-..-..-..-..-..-");
                         //"Y..Z..E..P..T..G..M..khd0dcm..u..n..p..f..a..z..y"

sUnit::sSystem                sUnit::System;
sUnit::pfRegisterDialog       sUnit::RegisterDialog = NULL;
psUnit                        sUnit::_1_ = new sUnit();

sMath::sDefinitions                sMath::Definitions;
sPhysMath::sMathOpRegistrator    sPhysMath::MathOpRegistrator;
sNetMath::sMathOpRegistrator     sNetMath::MathOpRegistrator;

map<sString,eInstrumentType>  sInstrumentTag::AvailableClassList;

DEFINE_CLASS_TAG(sInstrument)

sPtr<sFolderNode>                sDevice::DeviceList;
map<sString,psDevice>         sDevice::RunningDevicesByName;

DEFINE_CLASS_TAG(sDevice)


//------------------------------------------------------------------------------
} //namespace RA