You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
284 B

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. #include "branches2.hpp"
  2. #include "fmt/core.h"
  3. #include <iostream>
  4. Branches2::Branches2()
  5. {
  6. }
  7. Branches2::Branches2(toml::value const &v_)
  8. {
  9. auto const &tiers = toml::find(v_,"tier");
  10. for(auto const &tier : tiers.as_array())
  11. {
  12. _branches.emplace_back(tier);
  13. }
  14. }