Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/TremoloParser.hpp

    r56f73b r4d4d33  
    3535  void setFieldsForSave(std::string atomDataLine);
    3636
     37  void parseKnownTypes(std::istream &file);
     38  void createKnownTypesByIdentity();
     39
    3740
    3841private:
     
    5053
    5154  /**
     55   * Map to associate the elements with stuff in "Type", e.g. OC2 -> O.
     56   */
     57  std::map<std::string, std::string> knownTypes;
     58
     59  /**
    5260   * Map to associate the known keys with numbers.
    5361   */
    5462  std::map<std::string, TremoloKey::atomDataKey> knownKeys;
     63
     64  /**
     65   * Inverse Map to have a name to each known keys.
     66   */
     67  std::map<TremoloKey::atomDataKey, std::string> knownKeyNames;
    5568
    5669  /**
Note: See TracChangeset for help on using the changeset viewer.