@@ -857,9 +857,9 @@ namespace sdbus {
857857 * auto proxy = sdbus::createProxy(connection, "com.kistler.foo", "/com/kistler/foo");
858858 * @endcode
859859 */
860- [[nodiscard]] std::unique_ptr<sdbus:: IProxy> createProxy ( sdbus:: IConnection& connection
861- , ServiceName destination
862- , ObjectPath objectPath );
860+ [[nodiscard]] std::unique_ptr<IProxy> createProxy ( IConnection& connection
861+ , ServiceName destination
862+ , ObjectPath objectPath );
863863
864864 /* !
865865 * @brief Creates a proxy object for a specific remote D-Bus object
@@ -883,9 +883,9 @@ namespace sdbus {
883883 * auto proxy = sdbus::createProxy(std::move(connection), "com.kistler.foo", "/com/kistler/foo");
884884 * @endcode
885885 */
886- [[nodiscard]] std::unique_ptr<sdbus:: IProxy> createProxy ( std::unique_ptr<sdbus:: IConnection>&& connection
887- , ServiceName destination
888- , ObjectPath objectPath );
886+ [[nodiscard]] std::unique_ptr<IProxy> createProxy ( std::unique_ptr<IConnection>&& connection
887+ , ServiceName destination
888+ , ObjectPath objectPath );
889889
890890 /* !
891891 * @brief Creates a light-weight proxy object for a specific remote D-Bus object
@@ -910,19 +910,19 @@ namespace sdbus {
910910 * auto proxy = sdbus::createProxy(std::move(connection), "com.kistler.foo", "/com/kistler/foo", sdbus::dont_run_event_loop_thread);
911911 * @endcode
912912 */
913- [[nodiscard]] std::unique_ptr<sdbus:: IProxy> createProxy ( std::unique_ptr<sdbus:: IConnection>&& connection
914- , ServiceName destination
915- , ObjectPath objectPath
916- , dont_run_event_loop_thread_t );
913+ [[nodiscard]] std::unique_ptr<IProxy> createProxy ( std::unique_ptr<IConnection>&& connection
914+ , ServiceName destination
915+ , ObjectPath objectPath
916+ , dont_run_event_loop_thread_t );
917917
918918 /* !
919919 * @brief Creates a light-weight proxy object for a specific remote D-Bus object
920920 *
921921 * Does the same thing as createProxy(std::unique_ptr<sdbus::IConnection>&&, ServiceName, ObjectPath, dont_run_event_loop_thread_t);
922922 */
923- [[nodiscard]] std::unique_ptr<sdbus:: IProxy> createLightWeightProxy ( std::unique_ptr<sdbus:: IConnection>&& connection
924- , ServiceName destination
925- , ObjectPath objectPath );
923+ [[nodiscard]] std::unique_ptr<IProxy> createLightWeightProxy ( std::unique_ptr<IConnection>&& connection
924+ , ServiceName destination
925+ , ObjectPath objectPath );
926926
927927 /* !
928928 * @brief Creates a proxy object for a specific remote D-Bus object
@@ -941,8 +941,8 @@ namespace sdbus {
941941 * auto proxy = sdbus::createProxy("com.kistler.foo", "/com/kistler/foo");
942942 * @endcode
943943 */
944- [[nodiscard]] std::unique_ptr<sdbus:: IProxy> createProxy ( ServiceName destination
945- , ObjectPath objectPath );
944+ [[nodiscard]] std::unique_ptr<IProxy> createProxy ( ServiceName destination
945+ , ObjectPath objectPath );
946946
947947 /* !
948948 * @brief Creates a light-weight proxy object for a specific remote D-Bus object
@@ -962,16 +962,16 @@ namespace sdbus {
962962 * auto proxy = sdbus::createProxy("com.kistler.foo", "/com/kistler/foo", sdbus::dont_run_event_loop_thread );
963963 * @endcode
964964 */
965- [[nodiscard]] std::unique_ptr<sdbus:: IProxy> createProxy ( ServiceName destination
966- , ObjectPath objectPath
967- , dont_run_event_loop_thread_t );
965+ [[nodiscard]] std::unique_ptr<IProxy> createProxy ( ServiceName destination
966+ , ObjectPath objectPath
967+ , dont_run_event_loop_thread_t );
968968
969969 /* !
970970 * @brief Creates a light-weight proxy object for a specific remote D-Bus object
971971 *
972972 * Does the same thing as createProxy(ServiceName, ObjectPath, dont_run_event_loop_thread_t);
973973 */
974- [[nodiscard]] std::unique_ptr<sdbus:: IProxy> createLightWeightProxy (ServiceName destination, ObjectPath objectPath);
974+ [[nodiscard]] std::unique_ptr<IProxy> createLightWeightProxy (ServiceName destination, ObjectPath objectPath);
975975
976976} // namespace sdbus
977977
0 commit comments