trust-store  1.1.0
Provides a common implementation of a trust store to be used by trusted helpers.
dbus_agent.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2014 Canonical Ltd.
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU Lesser General Public License version 3,
6  * as 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: Thomas Voß <thomas.voss@canonical.com>
17  */
18 
19 #ifndef CORE_TRUST_DBUSAGENT_H_
20 #define CORE_TRUST_DBUSAGENT_H_
21 
22 #include <core/trust/visibility.h>
23 
24 namespace core
25 {
26 namespace dbus
27 {
28 class Bus;
29 }
30 namespace trust
31 {
32 // Forward declare the Agent interface.
33 class Agent;
34 
35 namespace dbus
36 {
44 CORE_TRUST_DLL_PUBLIC std::shared_ptr<core::trust::Agent> create_per_user_agent_for_bus_connection(
45  const std::shared_ptr<core::dbus::Bus>& connection,
46  const std::string& service_name);
47 
55 CORE_TRUST_DLL_PUBLIC std::shared_ptr<core::trust::Agent> create_multi_user_agent_for_bus_connection(
56  const std::shared_ptr<core::dbus::Bus>& connection,
57  const std::string& service_name);
58 }
59 }
60 }
61 
62 #endif // CORE_TRUST_DBUSAGENT_H_
CORE_TRUST_DLL_PUBLIC std::shared_ptr< core::trust::Agent > create_multi_user_agent_for_bus_connection(const std::shared_ptr< core::dbus::Bus > &connection, const std::string &service_name)
create_multi_user_agent_for_bus_connection creates a trust::Agent implementation communicating with u...
Definition: agent.h:28
CORE_TRUST_DLL_PUBLIC std::shared_ptr< core::trust::Agent > create_per_user_agent_for_bus_connection(const std::shared_ptr< core::dbus::Bus > &connection, const std::string &service_name)
create_per_user_agent_for_bus_connection creates a trust::Agent implementation communicating with a r...
#define CORE_TRUST_DLL_PUBLIC
Definition: visibility.h:26