Add C++ wrapper library
This commit adds libiir++, a C++ wrapper library which provides a true object-oriented interface. The library has two primary objects, Coeff (coefficient set) and Filter (filter instance) which are implemented internally using the C objects. The C++ implementation does produce additional copies of various bits of information at setup time in order to better support querying the structure of the filter at runtime. This is intended to be useful for a future Python extension that will provide a filter experimentation lab.
This commit is contained in:
parent
ccc5bc6738
commit
911b3eab3d
19 changed files with 969 additions and 0 deletions
1
config
1
config
|
|
@ -33,4 +33,5 @@ source "scripts/paths"
|
|||
|
||||
# Project-specific variables below.
|
||||
[ -z "${CC}" ] && CC="gcc"
|
||||
[ -z "${CXX}" ] && CXX="g++"
|
||||
[ -z "${CFLAGS}" ] && CFLAGS="-g -O2 -W -Wall"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue