blob: ac2009d4998791c4ecc78bf6694c693e680bced8 (
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
|
/* -*- c++ -*- */
/*
* Copyright 2008,2013 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "scheduler.h"
namespace gr {
scheduler::scheduler(flat_flowgraph_sptr ffg,
int max_noutput_items,
bool catch_exceptions)
{
}
scheduler::~scheduler() {}
} /* namespace gr */
|