Minor style fixes

This commit is contained in:
Klaus Basan
2018-12-14 10:05:26 +01:00
parent e5eeb43031
commit 59343c6c24
5 changed files with 10 additions and 7 deletions

View File

@@ -14,12 +14,13 @@
using namespace BlackMisc::Network;
using namespace BlackMisc::Simulation;
using namespace BlackMisc::Weather;
using namespace BlackCore;
namespace BlackSimPlugin
{
namespace Fsx
{
BlackCore::ISimulator *CSimulatorFsxFactory::create(const CSimulatorPluginInfo &info,
ISimulator *CSimulatorFsxFactory::create(const CSimulatorPluginInfo &info,
IOwnAircraftProvider *ownAircraftProvider,
IRemoteAircraftProvider *remoteAircraftProvider,
IWeatherGridProvider *weatherGridProvider,
@@ -29,7 +30,7 @@ namespace BlackSimPlugin
return new CSimulatorFsx(info, ownAircraftProvider, remoteAircraftProvider, weatherGridProvider, clientProvider, this);
}
BlackCore::ISimulatorListener *CSimulatorFsxFactory::createListener(const CSimulatorPluginInfo &info)
ISimulatorListener *CSimulatorFsxFactory::createListener(const CSimulatorPluginInfo &info)
{
return new CSimulatorFsxListener(info);
}