-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBINDINGS.H
More file actions
62 lines (53 loc) · 1.56 KB
/
Copy pathBINDINGS.H
File metadata and controls
62 lines (53 loc) · 1.56 KB
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
#pragma once
#include "PyProjectProperties.h"
#include "PyEnvironment.h"
#include "PyRoadway.h"
#include "PyViews.h"
#include "PyGraphManager.h"
#include "PyReportManager.h"
#include "PyLoadModifiers.h"
#include "PyBridge.h"
#include "PyPointOfInterest.h"
#include "PyLimits.h"
#include "PyEffectiveFlangeWidth.h"
#include "PyLossParameters.h"
#include "PyMomentCapacity.h"
#include <IFace\VersionInfo.h>
class CPyPGSuper
{
public:
void Init(IBroker* pBroker);
void Reset();
std::string GetVersionString() const;
std::string GetVersionStringWithBuildNumber() const;
std::string GetVersion() const;
std::string GetVersionWithBuildNumber() const;
CPyProjectProperties Properties();
CPyEnvironment Environment();
CPyRoadway Roadway();
CPyViews Views();
CPyGraphManager Graphs();
CPyReportManager Reports();
CPyLoadModifiers LoadModifiers();
CPyBridge Bridge();
CPyPointOfInterest PointOfInterest();
CPyLimits Limits();
CPyEffectiveFlangeWidth EffectiveFlangeWidth();
CPyLossParameters LossParameters();
CPyMomentCapacity MomentCapacity();
private:
CComPtr<IVersionInfo> m_pVersionInfo;
CPyProjectProperties m_Properties;
CPyEnvironment m_Environment;
CPyRoadway m_Roadway;
CPyViews m_Views;
CPyGraphManager m_GraphManager;
CPyReportManager m_ReportManager;
CPyLoadModifiers m_LoadModifiers;
CPyBridge m_Bridge;
CPyPointOfInterest m_PointOfInterest;
CPyLimits m_Limits;
CPyEffectiveFlangeWidth m_EffectiveFlangeWidth;
CPyLossParameters m_LossParameters;
CPyMomentCapacity m_MomentCapacity;
};