diff options
author | Tom Rondeau <tom@trondeau.com> | 2015-02-12 15:18:03 -0500 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2015-04-02 15:38:56 -0700 |
commit | 7240a8bdbbaefb8d9bd4ff489393f1b703776f8f (patch) | |
tree | 03faa6e1477d550e07f458dcbdc6c513f47588f9 /gnuradio-runtime/lib/controlport/rpcserver_booter_aggregator.cc | |
parent | b1c1c6e0b2b9c1681ca2d528360aea9741d7a739 (diff) |
controlport: working controlport server using thrift.
Still needs integration of running the thrift compiler for cpp and py in build system.
Diffstat (limited to 'gnuradio-runtime/lib/controlport/rpcserver_booter_aggregator.cc')
-rw-r--r-- | gnuradio-runtime/lib/controlport/rpcserver_booter_aggregator.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/controlport/rpcserver_booter_aggregator.cc b/gnuradio-runtime/lib/controlport/rpcserver_booter_aggregator.cc index 201dfb3929..a1983b4ac5 100644 --- a/gnuradio-runtime/lib/controlport/rpcserver_booter_aggregator.cc +++ b/gnuradio-runtime/lib/controlport/rpcserver_booter_aggregator.cc @@ -23,7 +23,8 @@ #include <gnuradio/rpcserver_booter_aggregator.h> rpcserver_booter_aggregator::rpcserver_booter_aggregator() : - d_type(std::string("aggregator")), server(new rpcserver_aggregator()) + d_type(std::string("aggregator")), + server(new rpcserver_aggregator()) {;} rpcserver_booter_aggregator::~rpcserver_booter_aggregator() |