X-Git-Url: https://git.sesse.net/?p=c64tapwav;a=blobdiff_plain;f=synth.h;fp=synth.h;h=3b71489f0c13c3257fbb9cae3bcccc9d1a997e41;hp=0000000000000000000000000000000000000000;hb=02cfbb7d322c6a683924ceb3b6277fca33c6b97e;hpb=35d290f19c02f0e884f4baec704851cfd1b86988 diff --git a/synth.h b/synth.h new file mode 100644 index 0000000..3b71489 --- /dev/null +++ b/synth.h @@ -0,0 +1,13 @@ +#ifndef _SYNTH_H +#define _SYNTH_H 1 + +#include + +struct pulse { + // all values in samples + double start, end; +}; + +std::vector synth(const std::vector &pulses); + +#endif // !defined(_SYNTH_H)