mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-05-05 09:45:44 +08:00
CLANG style
This commit is contained in:
committed by
Mat Sutcliffe
parent
4c33e4d792
commit
f98ba0e494
@@ -27,6 +27,18 @@ namespace BlackMisc
|
|||||||
class BLACKMISC_EXPORT IWeatherGridProvider
|
class BLACKMISC_EXPORT IWeatherGridProvider
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
//! Copy constructor
|
||||||
|
IWeatherGridProvider() = default;
|
||||||
|
|
||||||
|
//! Copy constructor
|
||||||
|
IWeatherGridProvider(const IWeatherGridProvider &) = delete;
|
||||||
|
|
||||||
|
//! Copy assignment operator
|
||||||
|
IWeatherGridProvider &operator =(const IWeatherGridProvider &) = delete;
|
||||||
|
|
||||||
|
//! Destructor
|
||||||
|
virtual ~IWeatherGridProvider() {}
|
||||||
|
|
||||||
//! Request weather grid
|
//! Request weather grid
|
||||||
virtual void requestWeatherGrid(const CWeatherGrid &weatherGrid,
|
virtual void requestWeatherGrid(const CWeatherGrid &weatherGrid,
|
||||||
const CSlot<void(const CWeatherGrid &)> &callback) = 0;
|
const CSlot<void(const CWeatherGrid &)> &callback) = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user