summaryrefslogtreecommitdiff
path: root/implementation/service_discovery/include/runtime_impl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/service_discovery/include/runtime_impl.hpp')
-rw-r--r--implementation/service_discovery/include/runtime_impl.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/implementation/service_discovery/include/runtime_impl.hpp b/implementation/service_discovery/include/runtime_impl.hpp
index 731c0be..cc0e14e 100644
--- a/implementation/service_discovery/include/runtime_impl.hpp
+++ b/implementation/service_discovery/include/runtime_impl.hpp
@@ -1,5 +1,4 @@
-// Copyright (C) 2014 BMW Group
-// Author: Lutz Bichler (lutz.bichler@bmw.de)
+// Copyright (C) 2014-2015 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
@@ -14,11 +13,12 @@ namespace sd {
class runtime_impl: public runtime {
public:
- static runtime * get();
- virtual ~runtime_impl();
+ static std::shared_ptr<runtime> get();
+ virtual ~runtime_impl();
- std::shared_ptr< service_discovery > create_service_discovery(service_discovery_host *_host) const;
- std::shared_ptr< message_impl > create_message() const;
+ std::shared_ptr<service_discovery> create_service_discovery(
+ service_discovery_host *_host) const;
+ std::shared_ptr<message_impl> create_message() const;
};
} // namespace sd