mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-18 22:39:18 +02:00
added class members initializations
This commit is contained in:
11
Track.cpp
11
Track.cpp
@@ -77,13 +77,10 @@ TIsolated::TIsolated()
|
||||
TIsolated("none", NULL);
|
||||
};
|
||||
|
||||
TIsolated::TIsolated(const string &n, TIsolated *i)
|
||||
{ // utworznie obwodu izolowanego
|
||||
asName = n;
|
||||
pNext = i;
|
||||
iAxles = 0;
|
||||
evBusy = evFree = NULL;
|
||||
pMemCell = NULL; // podpiąć istniejącą albo utworzyć pustą
|
||||
TIsolated::TIsolated(const string &n, TIsolated *i) :
|
||||
asName( n ), pNext( i )
|
||||
{
|
||||
// utworznie obwodu izolowanego. nothing to do here.
|
||||
};
|
||||
|
||||
TIsolated::~TIsolated(){
|
||||
|
||||
Reference in New Issue
Block a user