3

たくさんのC++クラスにPythonラッパーを実装したいと思います。pxdのどこかに私は持っています:

cdef cppclass FooImpl1:
    FooImpl1()
    int foo()

cdef cppclass FooImpl2
    FooImpl2()
    int foo()

pyxpythonラッパーでこのようなものを書くことができるかどうか疑問に思います:

ctypedef fused FooImpl:
    FooImpl1*
    FooImpl2*

cdef class Foo:
    cdef FooImpl impl
    def __cinit__(self, int selector):
        if selector == 1:
            self.impl = new FooImpl1()
        else:
            self.impl = new FooImpl2()

    def func(self):
        # depending on the object stored in impl FooImpl2::foo or FooImpl1::foo
        # will be called
        return self.impl.foo()

期待される動作を実現する方法はありますか?FooImpl1とFooImpl2は抽象インターフェースを共有せず、クラスのテンプレート特殊化です。

4

1 に答える 1