Bug correction:

NetList.cpp -> Netlist.cpp
	  NetList.h -> Netlist.h
	  Added newlines at end of files needed it
This commit is contained in:
Stephanie Youssef 2010-01-26 15:05:20 +00:00
parent faceb1f169
commit 53b89a61dc
9 changed files with 18 additions and 10 deletions

View File

@ -357,4 +357,5 @@ bool Circuit::writeToFile(string filePath) {
return true;
}
}
}

View File

@ -58,4 +58,5 @@ inline map<Name, Net*>::iterator Instance::getFirstConnectorIt() { return _netMa
inline map<Name, Net*>::iterator Instance::getLastConnectorIt() { return _netMap.end(); };
} // namespace
#endif
#endif

View File

@ -49,4 +49,5 @@ bool Name::operator==(const string& str) {
bool Name::operator<(const Name n) const {
return (_id < n._id);
}
} // namespace
} // namespace

View File

@ -40,4 +40,5 @@ const string& Name::getString() const{
} // namespace
#endif
#endif

View File

@ -50,4 +50,5 @@ inline vector<pair<Name, Name> >::iterator Net::getFirstConnectionIt() { return
inline vector<pair<Name, Name> >::iterator Net::getLastConnectionIt() { return _connections.end();};
} // namespace
#endif
#endif

View File

@ -11,7 +11,7 @@
#include <algorithm>
using namespace std;
#include "NetList.h"
#include "Netlist.h"
#include "Circuit.h"
namespace OpenChams {
@ -50,4 +50,4 @@ Net* Netlist::getNet(Name netName) {
}
return NULL;
}
} // namespace
} // namespace

View File

@ -51,4 +51,5 @@ inline vector<Net*>::iterator Netlist::getFirstNetIt() { return _nets.
inline vector<Net*>::iterator Netlist::getLastNetIt() { return _nets.end(); }
} // namespace
#endif
#endif

View File

@ -30,4 +30,5 @@ void Parameters::addParameter(Name name, double value) {
}
_params[name] = value;
}
} // namespace
} // namespace

View File

@ -37,4 +37,5 @@ inline map<Name, double>::iterator Parameters::getFirstIt() { return _params.beg
inline map<Name, double>::iterator Parameters::getLastIt() { return _params.end(); }
} // namespace
#endif
#endif