| 2792 | } |
| 2793 | |
| 2794 | ofxJSONElement ModularSynth::GetLayout() |
| 2795 | { |
| 2796 | ofxJSONElement root; |
| 2797 | |
| 2798 | root["modules"] = mModuleContainer.WriteModules(); |
| 2799 | root["ui_modules"] = mUILayerModuleContainer.WriteModules(); |
| 2800 | root["zoomlocations"] = mZoomer.GetSaveData(); |
| 2801 | |
| 2802 | return root; |
| 2803 | } |
| 2804 | |
| 2805 | void ModularSynth::SaveLayout(std::string jsonFile, bool makeDefaultLayout /*= true*/) |
| 2806 | { |
nothing calls this directly
no test coverage detected