gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

mqKeyInput.h (222B)


      1 #pragma once
      2 
      3 namespace mqLib
      4 {
      5 	class MicroQ;
      6 }
      7 
      8 namespace mqConsoleLib
      9 {
     10 	class KeyInput
     11 	{
     12 	public:
     13 		KeyInput(mqLib::MicroQ& _mQ) : m_mq(_mQ)
     14 		{
     15 		}
     16 
     17 		void processKey(int ch);
     18 
     19 	private:
     20 		mqLib::MicroQ& m_mq;
     21 	};
     22 }