~xavi-garcia-mena/unity-scopes-api/utils-qt

« back to all changes in this revision

Viewing changes to include/unity/scopes/qt/internal/QVariantBuilderImpl.h

  • Committer: Xavi Garcia
  • Date: 2015-01-20 13:59:36 UTC
  • Revision ID: xavi.garcia.mena@canonical.com-20150120135936-cogxk8ok7g0gvo8g
Added Qt-bindings classes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2015 Canonical Ltd
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify
 
5
 * it under the terms of the GNU Lesser General Public License version 3 as
 
6
 * published by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authored by: Xavi Garcia <xavi.garcia.mena@canonical.com>
 
17
 */
 
18
 
 
19
#pragma once
 
20
 
 
21
#include <QtCore/QPair>
 
22
#include <QtCore/QString>
 
23
#include <QtCore/QVariant>
 
24
#include <QtCore/QVector>
 
25
 
 
26
#include <memory>
 
27
 
 
28
namespace unity
 
29
{
 
30
 
 
31
namespace scopes
 
32
{
 
33
 
 
34
class VariantBuilder;
 
35
 
 
36
namespace qt
 
37
{
 
38
 
 
39
namespace internal
 
40
{
 
41
 
 
42
class QVariantBuilderImpl
 
43
{
 
44
public:
 
45
    QVariantBuilderImpl();
 
46
    QVariantBuilderImpl(QVariantBuilderImpl const& other);
 
47
    QVariantBuilderImpl(QVariantBuilderImpl&&) = default;
 
48
    ~QVariantBuilderImpl() = default;
 
49
    QVariantBuilderImpl& operator=(QVariantBuilderImpl const& other) = delete;
 
50
    QVariantBuilderImpl& operator=(QVariantBuilderImpl&&) = default;
 
51
    void add_tuple(std::initializer_list<QPair<QString, QVariant>> const& tuple);
 
52
    void add_tuple(QVector<QPair<QString, QVariant>> const& tuple);
 
53
    QVariant end();
 
54
 
 
55
private:
 
56
    std::unique_ptr<unity::scopes::VariantBuilder> api_builder_;
 
57
};
 
58
 
 
59
}  // namespace internal
 
60
 
 
61
}  // namespace qt
 
62
 
 
63
}  // namespace scopes
 
64
 
 
65
}  // namespace unity