Rename the ubiquitous _r pointer to RuntimeEnvironment to RR just to be a little more consistent about using _ to denote private member variables.
This commit is contained in:
parent
431476e2e4
commit
81b12b6826
17 changed files with 370 additions and 370 deletions
|
@ -113,7 +113,7 @@ public:
|
|||
SharedPtr<Network> &nw = _networks[nwid];
|
||||
if (nw)
|
||||
return nw;
|
||||
else return (nw = Network::newInstance(_r,this,nwid));
|
||||
else return (nw = Network::newInstance(RR,this,nwid));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -166,7 +166,7 @@ public:
|
|||
void _readLocalConfig();
|
||||
void _writeLocalConfig();
|
||||
|
||||
const RuntimeEnvironment *_r;
|
||||
const RuntimeEnvironment *RR;
|
||||
Dictionary _localConfig; // persisted as local.conf
|
||||
Mutex _localConfig_m;
|
||||
std::map< uint64_t,SharedPtr<Network> > _networks; // persisted in networks.d/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue