mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 04:25:35 +08:00
32 lines
908 B
C++
32 lines
908 B
C++
/* Copyright (C) 2019
|
|
* swift Project Community / Contributors
|
|
*
|
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution. No part of swift project, including this file, may be copied, modified, propagated,
|
|
* or distributed except according to the terms contained in the LICENSE file.
|
|
*/
|
|
|
|
// include whole code in this translation unit, as this code is used on swift/and XSWiftBus side
|
|
// BLACKMISC_EXPORT cannot be used
|
|
#include "blackmisc/simulation/settings/xswiftbussettingsqtfree.cpp"
|
|
|
|
#include "settings.h"
|
|
#include <string>
|
|
|
|
using namespace BlackMisc::Simulation::Settings;
|
|
|
|
namespace XSwiftBus
|
|
{
|
|
CSettings::CSettings() : CXSwiftBusSettingsQtFree()
|
|
{
|
|
// void
|
|
}
|
|
|
|
CSettings::CSettings(const std::string &json) : CXSwiftBusSettingsQtFree(json)
|
|
{
|
|
// void
|
|
}
|
|
|
|
} // ns
|
|
|