我有两个c ++对象
int queueIndex
Timer timer_obj
这里是计时器类的定义
class Timer
{
private:
struct timeval tStart; /**< @brief Stores the system time when the timer is started */
struct timeval tFinish; /**< @brief Stores the system time when the timer is stopped */
protected:
float getElapsedTime(struct timeval, struct timeval);
public:
Timer();
string currentTime();
float currentElapsedTime();
void restart();
float stop();
int high_pres_usleep_untill(unsigned long long int);
string getStringStartTimer();
void setStartTimerFromString(string);
void sleep(long int);
unsigned long long int get_clock();
我需要将这两个对象转换为PyObj *。我正在使用boost :: python来实现此目的。我现在希望在没有boost或swig的情况下完成它。 我成功转换了索引,但我对timer_obj
一无所知 PyObject* pyo=PyInt_FromLong(queueIndex)
如果有人可以帮我解决这个问题,我会感激不尽。我只需要一个你不需要给我完整代码的例子。同样在类中定义的函数有点复杂所以我没有在这里给它们。是的有可能转换timer_obj然后分配一个新的引用或者我是否必须为类中的所有结构和函数获取新的引用并创建一个带有这些引用的新类?
答案 0 :(得分:1)
您需要做的是创建extension type。不幸的是,这个过程相对复杂,需要几百行代码。这是boost :: python和SWIG的整个python,用于删除所有样板文件。
答案 1 :(得分:0)
正如内森所说,扩展类型相对而言。您希望探索Cython,因为语法更容易,并且它负责在内部生成样板。 http://docs.cython.org/src/userguide/wrapping_CPlusPlus.html
您还可以查看Niklas在https://stackoverflow.com/a/8933819/2156678
中发布的示例