~thomas-voss/biometryd/remove-obsolete-configuration-header

« back to all changes in this revision

Viewing changes to src/biometry/qml/Biometryd/identifier.h

  • Committer: Thomas Voß
  • Date: 2016-05-02 06:16:01 UTC
  • Revision ID: thomas.voss@canonical.com-20160502061601-vqzwfw4c0rxfna04
Initial commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2016 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 as published by
 
6
 * the Free Software Foundation; version 3.
 
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: Thomas Voß <thomas.voss@canonical.com>
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef BIOMETRYD_QML_IDENTIFIER_H_
 
21
#define BIOMETRYD_QML_IDENTIFIER_H_
 
22
 
 
23
#include <biometry/identifier.h>
 
24
#include <biometry/visibility.h>
 
25
 
 
26
#include <biometry/qml/Biometryd/operation.h>
 
27
 
 
28
#include <QObject>
 
29
#include <QString>
 
30
 
 
31
namespace biometry
 
32
{
 
33
namespace qml
 
34
{
 
35
class User;
 
36
 
 
37
/// @cond
 
38
class BIOMETRY_DLL_PUBLIC Identification : public TypedOperation<biometry::Identification>
 
39
{
 
40
    Q_OBJECT
 
41
public:
 
42
    Identification(const biometry::Operation<biometry::Identification>::Ptr& impl, QObject* parent)
 
43
        : TypedOperation<biometry::Identification>{impl, parent}
 
44
    {
 
45
    }
 
46
};
 
47
/// @endcond
 
48
 
 
49
/// @brief TemplateStore models a collection of templates.
 
50
/// @ingroup qml
 
51
class BIOMETRY_DLL_PUBLIC Identifier : public QObject
 
52
{
 
53
    Q_OBJECT
 
54
public:
 
55
    /// @brief Identifier initializes a new instance with impl and parent.
 
56
    Identifier(const std::reference_wrapper<biometry::Identifier>& impl, QObject* parent);
 
57
 
 
58
    /// @brief size returns an operation querying the size of templates enrolled for user.
 
59
    Q_INVOKABLE biometry::qml::Identification* identifyUser();
 
60
 
 
61
private:
 
62
    /// @cond
 
63
    std::reference_wrapper<biometry::Identifier> impl;
 
64
    /// @endcond
 
65
};
 
66
}
 
67
}
 
68
 
 
69
#endif // BIOMETRYD_QML_IDENTIFIER_H_