18 lines
245 B
C++
18 lines
245 B
C++
|
#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
|