From f6d23dd8a812bb5c7f16a58aad71e0d009365016 Mon Sep 17 00:00:00 2001 From: Gustavo Carneiro Date: Sun, 4 Oct 2020 16:10:14 +0100 Subject: [PATCH] examples: gccxmlparser -> castxmlparser, closes #35 --- examples/a/module-autogen.py | 2 +- examples/a/module-autoscan.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/a/module-autogen.py b/examples/a/module-autogen.py index acbf31d..2cda006 100644 --- a/examples/a/module-autogen.py +++ b/examples/a/module-autogen.py @@ -4,7 +4,7 @@ import sys import pybindgen from pybindgen import FileCodeSink -from pybindgen.gccxmlparser import ModuleParser +from pybindgen.castxmlparser import ModuleParser def my_module_gen(): module_parser = ModuleParser('a1', '::') diff --git a/examples/a/module-autoscan.py b/examples/a/module-autoscan.py index 6d4ddbd..f333de8 100644 --- a/examples/a/module-autoscan.py +++ b/examples/a/module-autoscan.py @@ -3,7 +3,7 @@ import sys from pybindgen import FileCodeSink -from pybindgen.gccxmlparser import ModuleParser +from pybindgen.castxmlparser import ModuleParser def my_module_gen(): module_parser = ModuleParser('a2', '::')