jm2cv/cvin.h

20 lines
232 B
C
Raw Permalink Normal View History

2010-01-24 20:46:33 +00:00
#ifndef CVIN_H
#define CVIN_H
#include "cvbase.h"
2010-01-24 20:46:33 +00:00
class CVIn : public CVBase
2010-01-24 20:46:33 +00:00
{
private:
jack_port_t *m_midi_out;
void shutdown();
int process(jack_nframes_t nframes);
public:
void start();
2010-01-26 19:04:21 +00:00
void stop();
2010-01-24 20:46:33 +00:00
};
#endif // CVIN_H