diff options
author | Nate Goergen <nate.goergen.gitlab1@mile10.com> | 2015-03-07 21:20:05 -0600 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2015-04-02 15:38:57 -0700 |
commit | e1352dd3cd401dcb36575e89894d14be71860dc8 (patch) | |
tree | 0f4fa08a246588c1ebab8fe839cdbb56c86a2862 /gnuradio-runtime/lib/controlport | |
parent | 6a5daf4f9942d0536a4507e2389e1a68f877465a (diff) |
controlport: renamed some functions for clairity
Diffstat (limited to 'gnuradio-runtime/lib/controlport')
-rw-r--r-- | gnuradio-runtime/lib/controlport/thrift/rpcserver_booter_thrift.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnuradio-runtime/lib/controlport/thrift/rpcserver_booter_thrift.cc b/gnuradio-runtime/lib/controlport/thrift/rpcserver_booter_thrift.cc index f033b612a5..985da4943e 100644 --- a/gnuradio-runtime/lib/controlport/thrift/rpcserver_booter_thrift.cc +++ b/gnuradio-runtime/lib/controlport/thrift/rpcserver_booter_thrift.cc @@ -68,6 +68,11 @@ const unsigned int thrift_application_base<rpcserver_base, rpcserver_booter_thri template<class rpcserver_base, class rpcserver_booter_thrift> const unsigned int thrift_application_base<rpcserver_base, rpcserver_booter_thrift>::d_default_num_thrift_threads(10U); +template<class rpcserver_base, class rpcserver_booter_thrift> +std::auto_ptr<thrift_application_base_impl> + thrift_application_base<rpcserver_base, rpcserver_booter_thrift>::p_impl( + new thrift_application_base_impl()); + template<class rpcserver_base, class rpcserver_booter_thrift> thrift_application_base<rpcserver_base, rpcserver_booter_thrift>::~thrift_application_base() { @@ -84,11 +89,6 @@ void thrift_application_base<rpcserver_base, rpcserver_booter_thrift>::start_thr d_thriftserver->serve(); } -template<class rpcserver_base, class rpcserver_booter_thrift> -std::auto_ptr<thrift_application_base_impl<rpcserver_booter_thrift> > - thrift_application_base<rpcserver_base, rpcserver_booter_thrift>::p_impl( - new thrift_application_base_impl<rpcserver_booter_thrift>()); - template<class rpcserver_base, typename rpcserver_booter_thrift> bool thrift_application_base<rpcserver_base, rpcserver_booter_thrift>::application_started() { |