summaryrefslogtreecommitdiffstats
path: root/unit-tests/POCDemo.py
blob: 475a62b7c2e958e24d821a73254e08573102a934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import libxml2
import demomodule # This is our core module

class POCDemo:
    """Demo of a wrapper class to return proper python libxml2 objects"""

    def GetXMLdoc(self):
        return libxml2.xmlDoc( _obj = demomodule.dump_doc() )

    def GetXMLnode(self):
        return libxml2.xmlNode( _obj = demomodule.dump_node() )