diff options
| author | Ted Ross <tross@apache.org> | 2011-01-11 17:58:04 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2011-01-11 17:58:04 +0000 |
| commit | 68f0a6faee3ba7d359ea0e48229cda1faba1f421 (patch) | |
| tree | 07a3cd6efff4123c6e0b62e9cf99cb92967a14b0 /cpp/bindings/qmf2/python | |
| parent | a3fa590892df1c668409a3ef468b74838e873832 (diff) | |
| download | qpid-python-68f0a6faee3ba7d359ea0e48229cda1faba1f421.tar.gz | |
Exposed asMap for DataAddr objects in Pyton and Ruby wrappers.
Enhanced the examples to show the passing of a DataAddr in an argument.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1057774 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/bindings/qmf2/python')
| -rw-r--r-- | cpp/bindings/qmf2/python/qmf2.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/bindings/qmf2/python/qmf2.py b/cpp/bindings/qmf2/python/qmf2.py index 911b080dfd..37efb8708b 100644 --- a/cpp/bindings/qmf2/python/qmf2.py +++ b/cpp/bindings/qmf2/python/qmf2.py @@ -533,6 +533,11 @@ class DataAddr(object): self.getName() == other.getName() and \ self.getAgentEpoch() == other.getAgentEpoch() + def asMap(self): + """ + """ + return self._impl.asMap() + def getAgentName(self): """ """ |
