summaryrefslogtreecommitdiff
path: root/gr-uhd/lib/rfnoc_block_generic_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-uhd/lib/rfnoc_block_generic_impl.h')
-rw-r--r--gr-uhd/lib/rfnoc_block_generic_impl.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/gr-uhd/lib/rfnoc_block_generic_impl.h b/gr-uhd/lib/rfnoc_block_generic_impl.h
new file mode 100644
index 0000000000..9ee7d3fb8a
--- /dev/null
+++ b/gr-uhd/lib/rfnoc_block_generic_impl.h
@@ -0,0 +1,27 @@
+/* -*- c++ -*- */
+/*
+ * Copyright 2019 Ettus Research, a National Instruments Brand.
+ * Copyright 2020 Free Software Foundation, Inc.
+ *
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ */
+
+#ifndef INCLUDED_GR_UHD_RFNOC_BLOCK_GENERIC_IMPL_H
+#define INCLUDED_GR_UHD_RFNOC_BLOCK_GENERIC_IMPL_H
+
+#include <gnuradio/uhd/rfnoc_block_generic.h>
+
+namespace gr {
+namespace uhd {
+
+class rfnoc_block_generic_impl : public rfnoc_block_generic
+{
+public:
+ rfnoc_block_generic_impl(::uhd::rfnoc::noc_block_base::sptr block_ref);
+ ~rfnoc_block_generic_impl();
+};
+
+} // namespace uhd
+} // namespace gr
+
+#endif /* INCLUDED_GR_UHD_RFNOC_BLOCK_GENERIC_IMPL_H */