blob: 62a45f798fd1da8a4dd18343087460965b2c5fd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/* -*- c++ -*- */
/*
* Copyright 2015 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef RPCSERVER_BOOTER_THRIFT_H
#define RPCSERVER_BOOTER_THRIFT_H
#include "thrift/ControlPort.h"
#include <gnuradio/rpcserver_booter_base.h>
#include <gnuradio/thrift_server_template.h>
class rpcserver_base;
class rpcserver_thrift;
class rpcserver_booter_thrift
: public virtual rpcserver_booter_base,
public virtual thrift_server_template<rpcserver_base,
rpcserver_thrift,
rpcserver_booter_thrift>
{
public:
rpcserver_booter_thrift();
~rpcserver_booter_thrift();
rpcserver_base* i();
const std::string& type() { return d_type; }
const std::vector<std::string> endpoints();
private:
std::string d_type;
};
#endif /* RPCSERVER_BOOTER_THRIFT_H */
|