NuriaProject Framework  0.1
The NuriaProject Framework
variant.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_VARIANT_HPP
18 #define NURIA_VARIANT_HPP
19 
20 #include "essentials.hpp"
21 #include <QVariant>
22 
23 namespace Nuria {
24 
28 class NURIA_CORE_EXPORT Variant {
29 public:
30 
41  template< typename ... Items >
42  static QVariantList buildList (const Items &... items) {
43  QVariantList list;
44  buildListImpl (list, items ...);
45  return list;
46  }
47 
56  static void *stealPointer (QVariant &variant);
57 
64  static void *getPointer (QVariant &variant);
65 
66 private:
67 
69  template< typename T > static inline const T &passThrough (const T &t) { return t; }
70 
71  // Simplifies usage for buildList().
72 #ifndef NURIA_NO_CHAR_ARRAY_TO_QSTRING
73  static inline QString passThrough (const char *str) { return QString (str); }
74 #endif
75 
77  static inline void buildListImpl (QVariantList &) { }
78 
79  //
80  template< typename T, typename ... Items >
81  static inline void buildListImpl (QVariantList &list, const T &cur, const Items & ... items) {
82  list.append (QVariant::fromValue (passThrough (cur)));
83  buildListImpl (list, items ...);
84  }
85 
87  Variant () = delete;
88 
89 };
90 
91 }
92 
93 #endif // NURIA_VARIANT_HPP
static QVariantList buildList(const Items &...items)
Definition: variant.hpp:42
Definition: abstractsessionmanager.hpp:24
Utilities for working with QVariants.
Definition: variant.hpp:28