VarDict.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <unordered_map>
4 #include <vector>
5 #include <string>
6 
7 // TODO: Port from double to std::variant when new c++ standard is out
8 struct VarDict
9 {
10  std::unordered_map<std::string, double> scalar;
11  std::unordered_map<std::string, std::vector<double>> vector;
12 };
13 
Definition: VarDict.h:8
std::unordered_map< std::string, std::vector< double > > vector
Definition: VarDict.h:11
std::unordered_map< std::string, double > scalar
Definition: VarDict.h:10