diff options
author | mormj <34754695+mormj@users.noreply.github.com> | 2020-05-22 14:21:09 -0400 |
---|---|---|
committer | Josh Morman <mormjb@gmail.com> | 2020-06-04 10:05:48 -0400 |
commit | 3165f73d7c6224523957fa69beade6069efea6ef (patch) | |
tree | bcc09005ab8cc6b2f6bef4589f5b612eeafb29be /gr-analog/python | |
parent | cb1185bc2c12c0c7bd76ab93040a63c39815e847 (diff) |
pybind: add hash check to binding file creation (#3472)
Diffstat (limited to 'gr-analog/python')
34 files changed, 298 insertions, 34 deletions
diff --git a/gr-analog/python/analog/bindings/CMakeLists.txt b/gr-analog/python/analog/bindings/CMakeLists.txt index ca43159b4d..603cd4cc89 100644 --- a/gr-analog/python/analog/bindings/CMakeLists.txt +++ b/gr-analog/python/analog/bindings/CMakeLists.txt @@ -41,7 +41,7 @@ list(APPEND analog_python_files squelch_base_ff_python.cc python_bindings.cc) -GR_PYBIND_MAKE(analog +GR_PYBIND_MAKE_CHECK_HASH(analog ../../.. gr::analog "${analog_python_files}") diff --git a/gr-analog/python/analog/bindings/agc2_cc_python.cc b/gr-analog/python/analog/bindings/agc2_cc_python.cc index b971c3d873..893a83e61c 100644 --- a/gr-analog/python/analog/bindings/agc2_cc_python.cc +++ b/gr-analog/python/analog/bindings/agc2_cc_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(agc2_cc.h) */ +/* BINDTOOL_HEADER_FILE_HASH(2b5f9a8e9b8b290d5d48493dbfb651cd) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/agc2_ff_python.cc b/gr-analog/python/analog/bindings/agc2_ff_python.cc index 8584d3569c..4581495b44 100644 --- a/gr-analog/python/analog/bindings/agc2_ff_python.cc +++ b/gr-analog/python/analog/bindings/agc2_ff_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(agc2_ff.h) */ +/* BINDTOOL_HEADER_FILE_HASH(9109f8c396a1a49bea1306f6edd36ea7) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/agc3_cc_python.cc b/gr-analog/python/analog/bindings/agc3_cc_python.cc index 72f1b67f65..f17d950907 100644 --- a/gr-analog/python/analog/bindings/agc3_cc_python.cc +++ b/gr-analog/python/analog/bindings/agc3_cc_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(agc3_cc.h) */ +/* BINDTOOL_HEADER_FILE_HASH(a3249a33ccef3b89642aa41df853772e) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/agc_cc_python.cc b/gr-analog/python/analog/bindings/agc_cc_python.cc index ff45df65d5..91e26b62b0 100644 --- a/gr-analog/python/analog/bindings/agc_cc_python.cc +++ b/gr-analog/python/analog/bindings/agc_cc_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(agc_cc.h) */ +/* BINDTOOL_HEADER_FILE_HASH(5c6f25a10209aa7d146e36b5aef27010) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/agc_ff_python.cc b/gr-analog/python/analog/bindings/agc_ff_python.cc index 6561a8dd18..0f9c8eaa18 100644 --- a/gr-analog/python/analog/bindings/agc_ff_python.cc +++ b/gr-analog/python/analog/bindings/agc_ff_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(agc_ff.h) */ +/* BINDTOOL_HEADER_FILE_HASH(e6b71daceff3aa1c28b2efab1e459066) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/agc_python.cc b/gr-analog/python/analog/bindings/agc_python.cc index aa8dcef176..ea6682b924 100644 --- a/gr-analog/python/analog/bindings/agc_python.cc +++ b/gr-analog/python/analog/bindings/agc_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(agc.h) */ +/* BINDTOOL_HEADER_FILE_HASH(d90b7e45f3562e159f1cd298df3585f6) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/cpfsk_bc_python.cc b/gr-analog/python/analog/bindings/cpfsk_bc_python.cc index 8006d16e5f..df7ca62edf 100644 --- a/gr-analog/python/analog/bindings/cpfsk_bc_python.cc +++ b/gr-analog/python/analog/bindings/cpfsk_bc_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(cpfsk_bc.h) */ +/* BINDTOOL_HEADER_FILE_HASH(e702ef3d26dedd94a467c55c4c3701bd) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/cpm_python.cc b/gr-analog/python/analog/bindings/cpm_python.cc index 83786019b0..e9ad1d5bd0 100644 --- a/gr-analog/python/analog/bindings/cpm_python.cc +++ b/gr-analog/python/analog/bindings/cpm_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(cpm.h) */ +/* BINDTOOL_HEADER_FILE_HASH(26142cac2adffa3cc16c2b8e9c0ae6ff) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/ctcss_squelch_ff_python.cc b/gr-analog/python/analog/bindings/ctcss_squelch_ff_python.cc index c965747b80..53aab7c447 100644 --- a/gr-analog/python/analog/bindings/ctcss_squelch_ff_python.cc +++ b/gr-analog/python/analog/bindings/ctcss_squelch_ff_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(ctcss_squelch_ff.h) */ +/* BINDTOOL_HEADER_FILE_HASH(e3921bc97f0f8813b708306467a41d49) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/dpll_bb_python.cc b/gr-analog/python/analog/bindings/dpll_bb_python.cc index 80db2d6f13..33135b3b09 100644 --- a/gr-analog/python/analog/bindings/dpll_bb_python.cc +++ b/gr-analog/python/analog/bindings/dpll_bb_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(dpll_bb.h) */ +/* BINDTOOL_HEADER_FILE_HASH(f13a506e4ee012fb1e3c9fb71bfacd82) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/fastnoise_source_python.cc b/gr-analog/python/analog/bindings/fastnoise_source_python.cc index fd65da6f9a..e43184bb63 100644 --- a/gr-analog/python/analog/bindings/fastnoise_source_python.cc +++ b/gr-analog/python/analog/bindings/fastnoise_source_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(fastnoise_source.h) */ +/* BINDTOOL_HEADER_FILE_HASH(a1bcac8382da0203f011bc01e8f42c98) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/feedforward_agc_cc_python.cc b/gr-analog/python/analog/bindings/feedforward_agc_cc_python.cc index b5a99208cb..245a55f487 100644 --- a/gr-analog/python/analog/bindings/feedforward_agc_cc_python.cc +++ b/gr-analog/python/analog/bindings/feedforward_agc_cc_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(feedforward_agc_cc.h) */ +/* BINDTOOL_HEADER_FILE_HASH(6b9c22fa731776e36f0b2746d83822b3) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/fmdet_cf_python.cc b/gr-analog/python/analog/bindings/fmdet_cf_python.cc index f16a0eadac..2e65e0c1a0 100644 --- a/gr-analog/python/analog/bindings/fmdet_cf_python.cc +++ b/gr-analog/python/analog/bindings/fmdet_cf_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(fmdet_cf.h) */ +/* BINDTOOL_HEADER_FILE_HASH(1fe8b834b16ecdc732240db0a090fec7) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/frequency_modulator_fc_python.cc b/gr-analog/python/analog/bindings/frequency_modulator_fc_python.cc index 1e3d869e58..abf83d2d5e 100644 --- a/gr-analog/python/analog/bindings/frequency_modulator_fc_python.cc +++ b/gr-analog/python/analog/bindings/frequency_modulator_fc_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(frequency_modulator_fc.h) */ +/* BINDTOOL_HEADER_FILE_HASH(550cd0787306aac8324787fffca29dc4) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/noise_source_python.cc b/gr-analog/python/analog/bindings/noise_source_python.cc index 6e2552e251..53d214c018 100644 --- a/gr-analog/python/analog/bindings/noise_source_python.cc +++ b/gr-analog/python/analog/bindings/noise_source_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(noise_source.h) */ +/* BINDTOOL_HEADER_FILE_HASH(2885ad90e3649ba18aeab38b6d906b82) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/noise_type_python.cc b/gr-analog/python/analog/bindings/noise_type_python.cc index 68ce5a31de..9a81813bb0 100644 --- a/gr-analog/python/analog/bindings/noise_type_python.cc +++ b/gr-analog/python/analog/bindings/noise_type_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(noise_type.h) */ +/* BINDTOOL_HEADER_FILE_HASH(00c3c3c56203c51ca56f93b2e9a0d21a) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/phase_modulator_fc_python.cc b/gr-analog/python/analog/bindings/phase_modulator_fc_python.cc index f0f5bef205..41aec252e2 100644 --- a/gr-analog/python/analog/bindings/phase_modulator_fc_python.cc +++ b/gr-analog/python/analog/bindings/phase_modulator_fc_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(phase_modulator_fc.h) */ +/* BINDTOOL_HEADER_FILE_HASH(3a3d52817f6d58610adb269a053e8fa8) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/pll_carriertracking_cc_python.cc b/gr-analog/python/analog/bindings/pll_carriertracking_cc_python.cc index 867ca16b5a..559a2d61cb 100644 --- a/gr-analog/python/analog/bindings/pll_carriertracking_cc_python.cc +++ b/gr-analog/python/analog/bindings/pll_carriertracking_cc_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(pll_carriertracking_cc.h) */ +/* BINDTOOL_HEADER_FILE_HASH(6a2575e904642d50edec70e0439649ed) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/pll_freqdet_cf_python.cc b/gr-analog/python/analog/bindings/pll_freqdet_cf_python.cc index e83fb93548..dd313bb26d 100644 --- a/gr-analog/python/analog/bindings/pll_freqdet_cf_python.cc +++ b/gr-analog/python/analog/bindings/pll_freqdet_cf_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(pll_freqdet_cf.h) */ +/* BINDTOOL_HEADER_FILE_HASH(7960ba805d99b0ab39271abf8b583d97) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/pll_refout_cc_python.cc b/gr-analog/python/analog/bindings/pll_refout_cc_python.cc index 52594b91ca..b7aeb7c33b 100644 --- a/gr-analog/python/analog/bindings/pll_refout_cc_python.cc +++ b/gr-analog/python/analog/bindings/pll_refout_cc_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(pll_refout_cc.h) */ +/* BINDTOOL_HEADER_FILE_HASH(75123dd7fcf8b7f7881cf308daf246ae) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/probe_avg_mag_sqrd_c_python.cc b/gr-analog/python/analog/bindings/probe_avg_mag_sqrd_c_python.cc index a223c5087a..578bfa7251 100644 --- a/gr-analog/python/analog/bindings/probe_avg_mag_sqrd_c_python.cc +++ b/gr-analog/python/analog/bindings/probe_avg_mag_sqrd_c_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(probe_avg_mag_sqrd_c.h) */ +/* BINDTOOL_HEADER_FILE_HASH(3af9ee51c7982368854ead610a617187) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/probe_avg_mag_sqrd_cf_python.cc b/gr-analog/python/analog/bindings/probe_avg_mag_sqrd_cf_python.cc index 2c2b49279c..795c385820 100644 --- a/gr-analog/python/analog/bindings/probe_avg_mag_sqrd_cf_python.cc +++ b/gr-analog/python/analog/bindings/probe_avg_mag_sqrd_cf_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(probe_avg_mag_sqrd_cf.h) */ +/* BINDTOOL_HEADER_FILE_HASH(ab00487308fe0e85ef3d09ffe6bae998) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/probe_avg_mag_sqrd_f_python.cc b/gr-analog/python/analog/bindings/probe_avg_mag_sqrd_f_python.cc index 58cad313ad..f5ae2a3481 100644 --- a/gr-analog/python/analog/bindings/probe_avg_mag_sqrd_f_python.cc +++ b/gr-analog/python/analog/bindings/probe_avg_mag_sqrd_f_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(probe_avg_mag_sqrd_f.h) */ +/* BINDTOOL_HEADER_FILE_HASH(52cbd8c7cf42b73b7d0cc4172f2209be) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/pwr_squelch_cc_python.cc b/gr-analog/python/analog/bindings/pwr_squelch_cc_python.cc index 7715f69aa2..6ed96bfd76 100644 --- a/gr-analog/python/analog/bindings/pwr_squelch_cc_python.cc +++ b/gr-analog/python/analog/bindings/pwr_squelch_cc_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(pwr_squelch_cc.h) */ +/* BINDTOOL_HEADER_FILE_HASH(9a039b4f53e3fc5fce917d466fb459c8) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/pwr_squelch_ff_python.cc b/gr-analog/python/analog/bindings/pwr_squelch_ff_python.cc index 7161fc7ea3..c6dabb9f07 100644 --- a/gr-analog/python/analog/bindings/pwr_squelch_ff_python.cc +++ b/gr-analog/python/analog/bindings/pwr_squelch_ff_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(pwr_squelch_ff.h) */ +/* BINDTOOL_HEADER_FILE_HASH(e1c00792c96ef3531cb83bd242fc382d) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/quadrature_demod_cf_python.cc b/gr-analog/python/analog/bindings/quadrature_demod_cf_python.cc index 8d79a707e8..feb9b95f98 100644 --- a/gr-analog/python/analog/bindings/quadrature_demod_cf_python.cc +++ b/gr-analog/python/analog/bindings/quadrature_demod_cf_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(quadrature_demod_cf.h) */ +/* BINDTOOL_HEADER_FILE_HASH(9487660011983c19714d4fb1d05ee929) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/rail_ff_python.cc b/gr-analog/python/analog/bindings/rail_ff_python.cc index aaa3254c7c..34daedee2e 100644 --- a/gr-analog/python/analog/bindings/rail_ff_python.cc +++ b/gr-analog/python/analog/bindings/rail_ff_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(rail_ff.h) */ +/* BINDTOOL_HEADER_FILE_HASH(7b21db8f7cc65bf0109647f328caec0e) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/random_uniform_source_python.cc b/gr-analog/python/analog/bindings/random_uniform_source_python.cc index 5730799349..ffbc0afcf2 100644 --- a/gr-analog/python/analog/bindings/random_uniform_source_python.cc +++ b/gr-analog/python/analog/bindings/random_uniform_source_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(random_uniform_source.h) */ +/* BINDTOOL_HEADER_FILE_HASH(c68207de4a594de5cf9a5c21341ac131) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/sig_source_python.cc b/gr-analog/python/analog/bindings/sig_source_python.cc index f2548f8ca9..c002f75aa3 100644 --- a/gr-analog/python/analog/bindings/sig_source_python.cc +++ b/gr-analog/python/analog/bindings/sig_source_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(sig_source.h) */ +/* BINDTOOL_HEADER_FILE_HASH(43a7b6efe653f8ebf2285ea5732b4c81) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/sig_source_waveform_python.cc b/gr-analog/python/analog/bindings/sig_source_waveform_python.cc index 009c517620..be3ae2fab9 100644 --- a/gr-analog/python/analog/bindings/sig_source_waveform_python.cc +++ b/gr-analog/python/analog/bindings/sig_source_waveform_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(sig_source_waveform.h) */ +/* BINDTOOL_HEADER_FILE_HASH(d101b492f60925516a86d3c0cab7c105) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/simple_squelch_cc_python.cc b/gr-analog/python/analog/bindings/simple_squelch_cc_python.cc index 11333fc90d..bcf6cdf086 100644 --- a/gr-analog/python/analog/bindings/simple_squelch_cc_python.cc +++ b/gr-analog/python/analog/bindings/simple_squelch_cc_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(simple_squelch_cc.h) */ +/* BINDTOOL_HEADER_FILE_HASH(783bde73814b6714237f8eeda6f0e6d8) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/squelch_base_cc_python.cc b/gr-analog/python/analog/bindings/squelch_base_cc_python.cc index ad555d1a98..568e0cdd20 100644 --- a/gr-analog/python/analog/bindings/squelch_base_cc_python.cc +++ b/gr-analog/python/analog/bindings/squelch_base_cc_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(squelch_base_cc.h) */ +/* BINDTOOL_HEADER_FILE_HASH(a9c95bd15eb924264c2ecab3b5e02963) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> diff --git a/gr-analog/python/analog/bindings/squelch_base_ff_python.cc b/gr-analog/python/analog/bindings/squelch_base_ff_python.cc index aed431047b..269145fe7d 100644 --- a/gr-analog/python/analog/bindings/squelch_base_ff_python.cc +++ b/gr-analog/python/analog/bindings/squelch_base_ff_python.cc @@ -7,7 +7,15 @@ * */ -/* This file is automatically generated using bindtool */ +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(squelch_base_ff.h) */ +/* BINDTOOL_HEADER_FILE_HASH(abb5217747009085c48490ab2cfc2703) */ +/***********************************************************************************/ #include <pybind11/complex.h> #include <pybind11/pybind11.h> |