summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/include/gnuradio/rpcserver_booter_base.h
blob: b297bf6e51e702552d2d620e61e260c2934994e8 (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
/* -*- c++ -*- */
/*
 * Copyright 2012 Free Software Foundation, Inc.
 *
 * This file is part of GNU Radio
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 *
 */

#ifndef RPCSERVER_BOOTER_BASE
#define RPCSERVER_BOOTER_BASE

#include <string>
#include <vector>

class rpcserver_base;

class rpcserver_booter_base
{
public:
    rpcserver_booter_base() { ; }
    virtual ~rpcserver_booter_base() { ; }

    virtual rpcserver_base* i() = 0;
    virtual const std::vector<std::string> endpoints() = 0;
    virtual const std::string& type() = 0;

private:
};

#endif /* RPCSERVER_BOOTER_BASE */