如何从C调用cpdef方法

时间:2016-02-18 10:31:51

标签: cython

我有一个公共类,其中包含使用cpdef定义的方法。根据cython文档,这可以从C调用。但是生成的头文件没有为此生成任何C / C ++函数/方法。

cdef public class Model[type ModelType, object Model]:                                                           
  cdef ModelContext *modelContext                                                                                
  cpdef calculate(self):                                                                                           
    print 'calculate called on Modell' 

0 个答案:

没有答案