Advertisement
Guest User

Untitled

a guest
Mar 14th, 2022
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. /*
  2. * Copyright 2022 Free Software Foundation, Inc.
  3. *
  4. * This file is part of GNU Radio
  5. *
  6. * SPDX-License-Identifier: GPL-3.0-or-later
  7. *
  8. */
  9.  
  10. /***********************************************************************************/
  11. /* This file is automatically generated using bindtool and can be manually edited */
  12. /* The following lines can be configured to regenerate this file during cmake */
  13. /* If manual edits are made, the following tags should be modified accordingly. */
  14. /* BINDTOOL_GEN_AUTOMATIC(0) */
  15. /* BINDTOOL_USE_PYGCCXML(0) */
  16. /* BINDTOOL_HEADER_FILE(adding_ff.h) */
  17. /* BINDTOOL_HEADER_FILE_HASH(7c2995a2fea7b74e5ec9bc9b3c630f0d) */
  18. /***********************************************************************************/
  19.  
  20. #include <pybind11/complex.h>
  21. #include <pybind11/pybind11.h>
  22. #include <pybind11/stl.h>
  23.  
  24. namespace py = pybind11;
  25.  
  26. #include <ANIME1/adding_ff.h>
  27. // pydoc.h is automatically generated in the build directory
  28. #include <adding_ff_pydoc.h>
  29.  
  30. void bind_adding_ff(py::module& m)
  31. {
  32.  
  33. using adding_ff = ::gr::ANIME1::adding_ff;
  34.  
  35.  
  36. py::class_<adding_ff, gr::block, gr::basic_block,
  37. std::shared_ptr<adding_ff>>(m, "adding_ff", D(adding_ff))
  38.  
  39. .def(py::init(&adding_ff::make),
  40. py::arg("constant0"),
  41. D(adding_ff,make)
  42. )
  43.  
  44.  
  45.  
  46.  
  47. ;
  48.  
  49.  
  50.  
  51.  
  52. }
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement