Fixed two typos in the update news
[supercollider.git] / testsuite / supernova / test_synth.hpp
blob808328401f424e39943738528296b6a4d2de169a
1 #include "../server/supernova/server/synth.hpp"
3 namespace nova
5 class test_synth:
6 public abstract_synth
8 public:
9 test_synth(int node_id, synth_definition_ptr const & prototype):
10 abstract_synth(node_id, prototype)
13 void run(void)
16 virtual float get(slot_index_t slot_id) const
18 return 0.f;
21 virtual void set(slot_index_t slot_id, sample val)
24 virtual void set_control_array(slot_index_t slot_id, size_t count, sample * val)