OdbDesignLib
OdbDesign ODB++ Parsing Library
AttributeLookupTable.h
1 #pragma once
2 #include <string>
3 #include <map>
4 #include "../../odbdesign_export.h"
5 
6 
7 namespace Odb::Lib::FileModel::Design
8 {
9  class ODBDESIGN_EXPORT AttributeLookupTable
10  {
11  public:
12 
13  const std::map<std::string, std::string>& GetAttributeLookupTable() const;
14  bool ParseAttributeLookupTable(const std::string& AttributeLookupTableString);
15 
16  protected:
17  AttributeLookupTable() = default; // abtract class
18 
19  std::map<std::string, std::string> m_attributeLookupTable;
20 
21  };
22 }