mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-01 13:47:01 -04:00
Feature plugins framework: presets
This commit is contained in:
@@ -110,10 +110,34 @@ void WebAPIAdapterInterface::ConfigKeys::debug() const
|
||||
qDebug(" }");
|
||||
}
|
||||
|
||||
qDebug("featuresets:");
|
||||
foreach(FeatureSetPresetKeys presetKeys, m_featureSetPresetKeys)
|
||||
{
|
||||
qDebug(" {");
|
||||
foreach(QString presetKey, presetKeys.m_keys) {
|
||||
qDebug(" %s", qPrintable(presetKey));
|
||||
}
|
||||
qDebug(" featureConfigs");
|
||||
foreach(FeatureKeys featureKeys, presetKeys.m_featureKeys)
|
||||
{
|
||||
qDebug(" {");
|
||||
qDebug(" config:");
|
||||
foreach(QString featureKey, featureKeys.m_featureKeys) {
|
||||
qDebug(" %s", qPrintable(featureKey));
|
||||
}
|
||||
qDebug(" }");
|
||||
}
|
||||
qDebug(" }");
|
||||
}
|
||||
|
||||
qDebug("workingPreset:");
|
||||
foreach(QString presetKey, m_workingPresetKeys.m_keys) {
|
||||
qDebug(" %s", qPrintable(presetKey));
|
||||
}
|
||||
qDebug("workingFeatureSetPreset:");
|
||||
foreach(QString presetKey, m_workingFeatureSetPresetKeys.m_keys) {
|
||||
qDebug(" %s", qPrintable(presetKey));
|
||||
}
|
||||
qDebug(" spectrumConfig:");
|
||||
foreach(QString spectrumKey, m_workingPresetKeys.m_spectrumKeys) {
|
||||
qDebug(" %s", qPrintable(spectrumKey));
|
||||
|
||||
Reference in New Issue
Block a user