summaryrefslogtreecommitdiff
path: root/giscanner/ast.py
diff options
context:
space:
mode:
Diffstat (limited to 'giscanner/ast.py')
-rw-r--r--giscanner/ast.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/giscanner/ast.py b/giscanner/ast.py
index a9537e8d..671db72e 100644
--- a/giscanner/ast.py
+++ b/giscanner/ast.py
@@ -1137,3 +1137,19 @@ class Callback(Callable):
def __init__(self, name, retval, parameters, throws, ctype=None):
Callable.__init__(self, name, retval, parameters, throws)
self.ctype = ctype
+
+
+class Section(Node):
+
+ def __init__(self, name, short_description, long_description,
+ see_also, title, stability, section_id, include,
+ image):
+ Node.__init__(self, name)
+ self.short_description = short_description
+ self.long_description = long_description
+ self.see_also = see_also
+ self.title = title
+ self.stability = stability
+ self.section_id = section_id
+ self.include = include
+ self.image = image