Joel Grunbaum
2022-01-11 0594ac9ba0f38944ef810b5ac48a2067b1ce5a09
1
2
3
4
5
6
7
8
9
10
#pragma once
 
#include "book.hpp"
#include <string>
#include <unordered_map>
 
namespace bom
{
void updateBom(std::unordered_map<std::string, book::Book>& bs);
}