summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/lib/messages/msg_producer.cc
blob: f369b9d8ddf5fed0a1a1b4ed06cb4c1865d207fb (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
/* -*- c++ -*- */
/*
 * Copyright 2012-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 <gnuradio/messages/msg_producer.h>

namespace gr {
namespace messages {

msg_producer::~msg_producer()
{
    // NOP, required as virtual destructor
}

} /* namespace messages */
} /* namespace gr */