Joel Grunbaum
2022-01-09 b4cf0a2e71ad2c204925b33f9600dc720e25b827
book.cpp
@@ -74,14 +74,14 @@
}
Book::Book()
    : bidSide(), askSide(), productType(TEST), product("a"), stationId("b"),
    : bidSide(), askSide(), productType(TEST), product("a"), stationId(7),
      unit("c"), expiry(std::chrono::nanoseconds(0)), aggFee(1), pasFee(-1),
      broFee(2)
{
}
Book::Book(ProductTypeEnum productType, std::string product,
           std::string stationId, std::string unit,
           int stationId, std::string unit,
           std::chrono::nanoseconds expiry, double aggFee, double pasFee,
           double broFee)
    : bidSide{}, askSide{}, productType{productType}, product(product),