summaryrefslogtreecommitdiff
path: root/dbus/types.py
diff options
context:
space:
mode:
Diffstat (limited to 'dbus/types.py')
-rw-r--r--dbus/types.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/dbus/types.py b/dbus/types.py
new file mode 100644
index 0000000..cc4a678
--- /dev/null
+++ b/dbus/types.py
@@ -0,0 +1,9 @@
+__all__ = ('ObjectPath', 'ByteArray', 'Signature', 'Byte', 'Boolean',
+ 'Int16', 'UInt16', 'Int32', 'UInt32', 'Int64', 'UInt64',
+ 'Double', 'String', 'Array', 'Struct', 'Dictionary',
+ 'UTF8String')
+
+from _dbus_bindings import ObjectPath, ByteArray, Signature, Byte,\
+ Int16, UInt16, Int32, UInt32,\
+ Int64, UInt64, Dictionary, Array, \
+ String, Boolean, Double, Struct, UTF8String