Fix: metadata: add missing return_ctype property
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Thu, 10 Mar 2016 23:05:18 +0000 (18:05 -0500)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Sat, 12 Mar 2016 06:00:40 +0000 (01:00 -0500)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
barectf/metadata.py

index 41a9cbdc5c829ffb4298a95adfdda41353f979b4..5682582e003bc9b48a71f22fa51966882f9e8273 100644 (file)
@@ -470,6 +470,14 @@ class Clock:
     def absolute(self, value):
         self._absolute = value
 
+    @property
+    def return_ctype(self):
+        return self._return_ctype
+
+    @return_ctype.setter
+    def return_ctype(self, value):
+        self._return_ctype = value
+
 
 class Event:
     def __init__(self):
This page took 0.025942 seconds and 4 git commands to generate.