hft/OrderBook.cc

18 lines
245 B
C++
Raw Permalink Normal View History

2025-03-08 03:41:40 -05:00
#include <OrderBook.hh>
#include <iostream>
namespace hft
{
void OrderBook::intake_order(OrderID id)
{
// consume from an input gRPC queue
// OR from a simple socket connection
}
int main ()
{
return 0;
}
} // End hft namespace