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.

16 lines
258B

  1. #pragma once
  2. #include "CV.hpp"
  3. #include "EventEmitter.hpp"
  4. namespace SynthDevKit {
  5. class CVEvent : public CV, public EventEmitter {
  6. public:
  7. CVEvent (float, int16_t);
  8. void update (float);
  9. void reset ( );
  10. private:
  11. int16_t count;
  12. };
  13. }