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

udpServer.h (243B)


      1 #pragma once
      2 
      3 #include "networkLib/udpServer.h"
      4 
      5 namespace bridgeServer
      6 {
      7 	class UdpServer : public networkLib::UdpServer
      8 	{
      9 	public:
     10 		UdpServer();
     11 
     12 		std::vector<uint8_t> validateRequest(const std::vector<uint8_t>& _request) override;
     13 	};
     14 }