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.

24 lines
340B

  1. //par.h
  2. #ifndef __PAR_H__
  3. #define __PAR_H__
  4. class inv;
  5. class ser;
  6. #include "wdf.h"
  7. #include "inv.h"
  8. #include "ser.h"
  9. class par : public Adaptor {
  10. public:
  11. template <class Port1, class Port2>par(Port1 *left, Port2 *right);
  12. par(inv *l, R* r);
  13. par(inv *l, V* r);
  14. par(C *l, R* r);
  15. T waveUp();
  16. void setWD(T waveparent);
  17. };
  18. #else
  19. #endif