Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
268B

  1. //inv.h
  2. #ifndef __INV_H__
  3. #define __INV_H__
  4. class ser;
  5. class par;
  6. #include "wdf.h"
  7. #include "ser.h"
  8. #include "par.h"
  9. class inv : public Adaptor {
  10. public:
  11. template <class Port>inv(Port *left);
  12. inv(ser *l);
  13. T waveUp();
  14. void setWD(T waveparent);
  15. };
  16. #else
  17. #endif