私は2つの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();
これら 2 つのオブジェクトを PyObj* に変換する必要があります。この目的のために boost::python を使用していました。今は、boost や swig なしで実行したいと考えています。インデックスの変換に成功しましたが、timer_obj についてはわかりません
PyObject* pyo=PyInt_FromLong(queueIndex)
誰かがこれで私を助けてくれたらありがたいです.私は完全なコードを私に与える必要のない例が必要です.また、クラスで定義された関数は少し複雑なので、ここではそれらを与えませんでした.それは可能ですか? timer_obj を変換してから新しい参照を割り当てるか、クラス内のすべての構造体と関数の新しい参照を取得して、これらの参照を使用して新しいクラスを作成する必要がありますか?