libiir/src/libiir++/000_TopSource.cc

22 lines
495 B
C++

/* libiir/src/libiir++/000_TopSource.cc
*
* Copyright: ©2014, Laurence Withers.
* Author: Laurence Withers <l@lwithers.me.uk>
* License: GPLv3
*/
#include "iir++.h"
#include "iir.h"
// iir.h includes <complex.h>, which #defines complex to _Complex. That's fine
// for the C header above, but will mess with our code definitions below.
#undef complex
// Below are all the includes used throughout the library.
namespace IIR {
/* options for text editors
vim: expandtab:ts=4:sw=4
*/