swift
presentweatherlist.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (C) 2015 swift Project Community / Contributors
2 // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
3 
5 
6 #ifndef SWIFT_MISC_WEATHER_PRESENTWEATHERLIST_H
7 #define SWIFT_MISC_WEATHER_PRESENTWEATHERLIST_H
8 
9 #include <QMetaType>
10 
11 #include "misc/sequence.h"
12 #include "misc/swiftmiscexport.h"
14 
15 SWIFT_DECLARE_SEQUENCE_MIXINS(swift::misc::weather, CPresentWeather, CPresentWeatherList)
16 
17 namespace swift::misc::weather
18 {
23  public CSequence<CPresentWeather>,
24  public swift::misc::mixin::MetaType<CPresentWeatherList>
25  {
26  public:
29 
31  CPresentWeatherList() = default;
32 
35  };
36 
37 } // namespace swift::misc::weather
38 
40 
41 #endif // SWIFT_MISC_WEATHER_PRESENTWEATHERLIST_H
Generic sequential container with value semantics.
Definition: sequence.h:86
CSequence()=default
Default constructor.
CRTP class template from which a derived class can inherit common methods dealing with the metatype o...
Definition: mixinmetatype.h:29
Value object encapsulating a list of present weathers.
CPresentWeatherList()=default
Default constructor.
#define SWIFT_MISC_DECLARE_USING_MIXIN_METATYPE(DERIVED)
When a derived class and a base class both inherit from mixin::MetaType, the derived class uses this ...
#define SWIFT_DECLARE_SEQUENCE_MIXINS(Namespace, T, List)
Explicit template declaration of mixins for a CSequence subclass to be placed near the top of the hea...
Definition: sequence.h:62
#define SWIFT_MISC_EXPORT
Export a class or function from the library.