CLANG style

This commit is contained in:
Klaus Basan
2019-02-27 21:54:11 +01:00
committed by Mat Sutcliffe
parent 4c33e4d792
commit f98ba0e494

View File

@@ -27,6 +27,18 @@ namespace BlackMisc
class BLACKMISC_EXPORT IWeatherGridProvider
{
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
virtual void requestWeatherGrid(const CWeatherGrid &weatherGrid,
const CSlot<void(const CWeatherGrid &)> &callback) = 0;