mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-04 08:36:52 +08:00
Use nested namespaces (C++17 feature)
This commit is contained in:
@@ -9,18 +9,15 @@
|
||||
#include "simulatoremulatedconfig.h"
|
||||
#include "simulatoremulatedconfigwidget.h"
|
||||
|
||||
namespace BlackSimPlugin
|
||||
namespace BlackSimPlugin::Emulated
|
||||
{
|
||||
namespace Emulated
|
||||
CSimulatorEmulatedConfig::CSimulatorEmulatedConfig(QObject *parent) : QObject(parent)
|
||||
{
|
||||
CSimulatorEmulatedConfig::CSimulatorEmulatedConfig(QObject *parent) : QObject(parent)
|
||||
{
|
||||
// void
|
||||
}
|
||||
// void
|
||||
}
|
||||
|
||||
BlackGui::CPluginConfigWindow *CSimulatorEmulatedConfig::createConfigWindow(QWidget *parent)
|
||||
{
|
||||
return new CSimulatorEmulatedConfigWidget(parent);
|
||||
}
|
||||
} // ns
|
||||
BlackGui::CPluginConfigWindow *CSimulatorEmulatedConfig::createConfigWindow(QWidget *parent)
|
||||
{
|
||||
return new CSimulatorEmulatedConfigWidget(parent);
|
||||
}
|
||||
} // ns
|
||||
|
||||
Reference in New Issue
Block a user