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

« back to all changes in this revision

Viewing changes to src/biometry/qml/Biometryd/device.cpp

  • 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
#include <biometry/qml/Biometryd/device.h>
 
21
 
 
22
#include <biometry/qml/Biometryd/identifier.h>
 
23
#include <biometry/qml/Biometryd/template_store.h>
 
24
 
 
25
biometry::qml::Device::Device(const std::shared_ptr<biometry::Device>& impl, QObject* parent)
 
26
    : QObject{parent},
 
27
      impl{impl}
 
28
{
 
29
}
 
30
 
 
31
biometry::qml::TemplateStore* biometry::qml::Device::templateStore()
 
32
{
 
33
    return new TemplateStore{impl->template_store(), this};
 
34
}
 
35
 
 
36
biometry::qml::Identifier* biometry::qml::Device::identifier()
 
37
{
 
38
    return new Identifier{impl->identifier(), this};
 
39
}