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

« back to all changes in this revision

Viewing changes to src/biometry/dbus/stub/device.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_DBUS_STUB_DEVICE_H_
 
21
#define BIOMETRYD_DBUS_STUB_DEVICE_H_
 
22
 
 
23
#include <biometry/device.h>
 
24
 
 
25
#include <util/once.h>
 
26
 
 
27
#include <core/dbus/object.h>
 
28
#include <core/dbus/service.h>
 
29
 
 
30
namespace biometry
 
31
{
 
32
namespace dbus
 
33
{
 
34
namespace stub
 
35
{
 
36
/// @cond
 
37
class Identifier;
 
38
class TemplateStore;
 
39
/// @endcond
 
40
 
 
41
class Device : public biometry::Device
 
42
{
 
43
public:
 
44
    /// @brief Device creates a new instance for the given remote service and object;
 
45
    Device(const core::dbus::Bus::Ptr& bus, const core::dbus::Service::Ptr& service, const core::dbus::Object::Ptr& object);
 
46
 
 
47
    // From biometry::Device
 
48
    biometry::TemplateStore& template_store() override;
 
49
    biometry::Identifier& identifier() override;
 
50
    biometry::Verifier& verifier() override;
 
51
 
 
52
private:
 
53
    core::dbus::Bus::Ptr bus_;
 
54
    core::dbus::Service::Ptr service_;
 
55
    core::dbus::Object::Ptr object_;
 
56
 
 
57
    util::Once<std::shared_ptr<biometry::dbus::stub::TemplateStore>> template_store_;
 
58
    util::Once<std::shared_ptr<biometry::dbus::stub::Identifier>> identifier_;
 
59
};
 
60
}
 
61
}
 
62
}
 
63
 
 
64
#endif // BIOMETRYD_DBUS_STUB_DEVICE_H_