| 5 | #include "NeuralNoteLNF.h" |
| 6 | |
| 7 | class NeuralNoteEditor : public juce::AudioProcessorEditor |
| 8 | { |
| 9 | public: |
| 10 | explicit NeuralNoteEditor(NeuralNoteAudioProcessor&); |
| 11 | |
| 12 | ~NeuralNoteEditor(); |
| 13 | |
| 14 | void paint(juce::Graphics&) override; |
| 15 | |
| 16 | void resized() override; |
| 17 | |
| 18 | NeuralNoteMainView* getMainView() const { return mMainView.get(); } |
| 19 | |
| 20 | private: |
| 21 | std::unique_ptr<NeuralNoteMainView> mMainView; |
| 22 | |
| 23 | NeuralNoteLNF mNeuralNoteLnF; |
| 24 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected