diff options
author | Dan Winship <danw@redhat.com> | 2015-04-03 10:08:52 -0400 |
---|---|---|
committer | Dan Winship <danw@redhat.com> | 2015-07-24 13:25:47 -0400 |
commit | c1dd3b6eed11eaa30d4dd80d22845676e3ff8fec (patch) | |
tree | 25ff796a954e63274ee842a2b66847f5d0f5c876 /src/nm-active-connection.h | |
parent | 6fcc1deee0a9549d753813f9406ea1d74a2a8e8c (diff) | |
download | NetworkManager-c1dd3b6eed11eaa30d4dd80d22845676e3ff8fec.tar.gz |
core: move D-Bus export/unexport into NMExportedObject
Move D-Bus export/unexport handling into NMExportedObject and remove
type-specific export/get_path methods (export paths are now specified
at the class level, and NMExportedObject handles the counters for all
exported types automatically).
Since all exportable objects now use the same get_path() method, we
can also add some helper methods to simplify get_property()
implementations for object-path and object-path-array properties.
Diffstat (limited to 'src/nm-active-connection.h')
-rw-r--r-- | src/nm-active-connection.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nm-active-connection.h b/src/nm-active-connection.h index a483895ade..ccdc563f06 100644 --- a/src/nm-active-connection.h +++ b/src/nm-active-connection.h @@ -96,8 +96,6 @@ void nm_active_connection_authorize (NMActiveConnection *self, gpointer user_data1, gpointer user_data2); -void nm_active_connection_export (NMActiveConnection *self); - NMConnection *nm_active_connection_get_connection (NMActiveConnection *self); void nm_active_connection_set_connection (NMActiveConnection *self, @@ -109,8 +107,6 @@ const char * nm_active_connection_get_uuid (NMActiveConnection *self); const char * nm_active_connection_get_connection_type (NMActiveConnection *self); -const char * nm_active_connection_get_path (NMActiveConnection *self); - const char * nm_active_connection_get_specific_object (NMActiveConnection *self); void nm_active_connection_set_specific_object (NMActiveConnection *self, |