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

@ -358,3 +358,4 @@ bool Circuit::writeToFile(string filePath) {
} }
} }

View File

@ -59,3 +59,4 @@ inline map<Name, Net*>::iterator Instance::getLastConnectorIt() { return _netMap
} // namespace } // namespace
#endif #endif

View File

@ -50,3 +50,4 @@ bool Name::operator<(const Name n) const {
return (_id < n._id); return (_id < n._id);
} }
} // namespace } // namespace

View File

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

View File

@ -51,3 +51,4 @@ inline vector<pair<Name, Name> >::iterator Net::getLastConnectionIt() { return _
} // namespace } // namespace
#endif #endif

View File

@ -11,7 +11,7 @@
#include <algorithm> #include <algorithm>
using namespace std; using namespace std;
#include "NetList.h" #include "Netlist.h"
#include "Circuit.h" #include "Circuit.h"
namespace OpenChams { namespace OpenChams {

View File

@ -52,3 +52,4 @@ inline vector<Net*>::iterator Netlist::getLastNetIt() { return _nets.
} // namespace } // namespace
#endif #endif

View File

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

View File

@ -38,3 +38,4 @@ inline map<Name, double>::iterator Parameters::getLastIt() { return _params.end
} // namespace } // namespace
#endif #endif