forked from andrmuel/gr-dab
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Start of 3.9 port: gr-dab now builds as a python module called grdab.
Some of the Gnuradio Python API has changed in 3.9 and still needs porting
- Loading branch information
Showing
142 changed files
with
5,160 additions
and
2,740 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| #ifndef PYDOC_MACROS_H | ||
| #define PYDOC_MACROS_H | ||
|
|
||
| #define __EXPAND(x) x | ||
| #define __COUNT(_1, _2, _3, _4, _5, _6, _7, COUNT, ...) COUNT | ||
| #define __VA_SIZE(...) __EXPAND(__COUNT(__VA_ARGS__, 7, 6, 5, 4, 3, 2, 1)) | ||
| #define __CAT1(a, b) a##b | ||
| #define __CAT2(a, b) __CAT1(a, b) | ||
| #define __DOC1(n1) __doc_##n1 | ||
| #define __DOC2(n1, n2) __doc_##n1##_##n2 | ||
| #define __DOC3(n1, n2, n3) __doc_##n1##_##n2##_##n3 | ||
| #define __DOC4(n1, n2, n3, n4) __doc_##n1##_##n2##_##n3##_##n4 | ||
| #define __DOC5(n1, n2, n3, n4, n5) __doc_##n1##_##n2##_##n3##_##n4##_##n5 | ||
| #define __DOC6(n1, n2, n3, n4, n5, n6) __doc_##n1##_##n2##_##n3##_##n4##_##n5##_##n6 | ||
| #define __DOC7(n1, n2, n3, n4, n5, n6, n7) \ | ||
| __doc_##n1##_##n2##_##n3##_##n4##_##n5##_##n6##_##n7 | ||
| #define DOC(...) __EXPAND(__EXPAND(__CAT2(__DOC, __VA_SIZE(__VA_ARGS__)))(__VA_ARGS__)) | ||
|
|
||
| #endif // PYDOC_MACROS_H |
Oops, something went wrong.