add scope resolution to parseVector
This commit is contained in:
parent
4a5e49f8d6
commit
a225318882
@ -82,7 +82,7 @@ bool Simulation::parseCircuit(string fileName)
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool parseVector(string fileName) {
|
bool Simulation::parseVector(string fileName) {
|
||||||
ifstream in;
|
ifstream in;
|
||||||
in.open(fileName + "_v.txt");
|
in.open(fileName + "_v.txt");
|
||||||
if (in.fail()) {
|
if (in.fail()) {
|
||||||
@ -92,6 +92,7 @@ bool parseVector(string fileName) {
|
|||||||
|
|
||||||
string tmpString;
|
string tmpString;
|
||||||
int timeInt, valInt;
|
int timeInt, valInt;
|
||||||
|
Wire *tmpWire;
|
||||||
|
|
||||||
// get rid of first line
|
// get rid of first line
|
||||||
getline(in, tmpString);
|
getline(in, tmpString);
|
||||||
@ -104,7 +105,7 @@ bool parseVector(string fileName) {
|
|||||||
|
|
||||||
for(auto i = wires.begin(); i != wires.end(); ++i) {
|
for(auto i = wires.begin(); i != wires.end(); ++i) {
|
||||||
if(i->getName() == tmpString) {
|
if(i->getName() == tmpString) {
|
||||||
tmpWire = i;
|
tmpWire = *i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user