1#pragma once 2class Synth 3{ 4public: 5 virtual double getValue(double x, double y) = 0; 6 7 doubleArray create(int width, int height); 8}; 9