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.

23 lines
322B

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