Code cleanup, no functional change
This commit is contained in:
parent
fe03a4d799
commit
b085649f20
2 changed files with 13 additions and 13 deletions
|
@ -194,18 +194,18 @@ public:
|
|||
|
||||
class MetarLoadRequest {
|
||||
public:
|
||||
MetarLoadRequest( const string & stationId ) {
|
||||
_stationId = stationId;
|
||||
_proxyHost = fgGetNode("/sim/presets/proxy/host", true)->getStringValue();
|
||||
_proxyPort = fgGetNode("/sim/presets/proxy/port", true)->getStringValue();
|
||||
_proxyAuth = fgGetNode("/sim/presets/proxy/authentication", true)->getStringValue();
|
||||
}
|
||||
MetarLoadRequest( const MetarLoadRequest & other ) {
|
||||
_stationId = other._stationId;
|
||||
_proxyHost = other._proxyAuth;
|
||||
_proxyPort = other._proxyPort;
|
||||
_proxyAuth = other._proxyAuth;
|
||||
}
|
||||
MetarLoadRequest( const string & stationId ) :
|
||||
_stationId(stationId),
|
||||
_proxyHost(fgGetNode("/sim/presets/proxy/host", true)->getStringValue()),
|
||||
_proxyPort(fgGetNode("/sim/presets/proxy/port", true)->getStringValue()),
|
||||
_proxyAuth(fgGetNode("/sim/presets/proxy/authentication", true)->getStringValue())
|
||||
{}
|
||||
MetarLoadRequest( const MetarLoadRequest & other ) :
|
||||
_stationId(other._stationId),
|
||||
_proxyHost(other._proxyAuth),
|
||||
_proxyPort(other._proxyPort),
|
||||
_proxyAuth(other._proxyAuth)
|
||||
{}
|
||||
string _stationId;
|
||||
string _proxyHost;
|
||||
string _proxyPort;
|
||||
|
|
|
@ -7,7 +7,7 @@ using simgear::PropertyList;
|
|||
class TiedPropertyList : PropertyList {
|
||||
public:
|
||||
TiedPropertyList() {}
|
||||
TiedPropertyList( SGPropertyNode_ptr root ) { _root = root; }
|
||||
TiedPropertyList( SGPropertyNode_ptr root ) : _root(root) {}
|
||||
|
||||
void setRoot( SGPropertyNode_ptr root ) { _root = root; }
|
||||
SGPropertyNode_ptr getRoot() const { return _root; }
|
||||
|
|
Loading…
Reference in a new issue