diff options
author | Andrej Rode <mail@andrejro.de> | 2018-12-29 12:23:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-29 12:23:49 +0100 |
commit | a834730cab8087877801adcdef716e443c21ee54 (patch) | |
tree | 5c2745ca0aaa743038cb3d7b446735dec55128d0 /grc/core/FlowGraph.py | |
parent | c35fdf1b64bd2556ff827d25312c4daeeb31aa95 (diff) | |
parent | c938d168478efbe59a1f54cbf3e10afe54a307b3 (diff) |
Merge the polished results from the 2017 GSoC "C++ Code Generation with GRC"
Flowgraphs with basic blocks can be created in the GNU Radio Companion and exported to a single C++ binary.
The use of the C++ generation is still experimental and needs testing and extension to more parts of the GNU Radio codebase.
Diffstat (limited to 'grc/core/FlowGraph.py')
-rw-r--r-- | grc/core/FlowGraph.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grc/core/FlowGraph.py b/grc/core/FlowGraph.py index 2c3d6f26c7..bf26225e48 100644 --- a/grc/core/FlowGraph.py +++ b/grc/core/FlowGraph.py @@ -64,7 +64,7 @@ class FlowGraph(Element): def imports(self): """ - Get a set of all import statements in this flow graph namespace. + Get a set of all import statements (Python) in this flow graph namespace. Returns: a list of import statements @@ -73,7 +73,7 @@ class FlowGraph(Element): def get_variables(self): """ - Get a list of all variables in this flow graph namespace. + Get a list of all variables (Python) in this flow graph namespace. Exclude parameterized variables. Returns: |