| | |
| | | } |
| | | |
| | | 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), |