Skip to content
Snippets Groups Projects
Commit 078fe746 authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Switched association loading to .ini loaded path

parent cf3edaf5
No related branches found
No related tags found
No related merge requests found
#include <metadata_manager.hpp>
#include <layer.hpp>
#include <INIReader.h>
std::map<std::string, std::vector<ObjectMetadata>> MetadataManager::_metadataMap = {};
std::string MetadataManager::_bottomMetalLayername = "";
......@@ -88,7 +89,10 @@ bool MetadataManager::addLayer(const Layer& layer) {
}
void MetadataManager::markBottomMetal(std::string layername) {
_bottomMetalLayername = layername;
std::ifstream file("C:\\Users\\Pascal\\repos\\rbcomb-sample-visualizer\\gui\\resources\\association\\sample-minicircuit-association.txt");
INIReader inireader("config.ini");
//load electrode net association file
std::ifstream file(inireader.GetString("paths", "pathAssociation", "NONE") + "sample-minicircuit-association.txt");
std::string line;
while (std::getline(file, line))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment