Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6768369
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T15:04:01+00:00 2026-05-26T15:04:01+00:00

I have two classes, the first called Radish and the second called RadishCont. All

  • 0

I have two classes, the first called “Radish” and the second called “RadishCont”.
All the code is written in C++ and need to be used in python.

Radish have been exposed to python using SWIG; RadishCont, instead, have been exposed using boost::python.

I need to add a method into the class RadishCont that has this syntax:

Radish* get_radish()
{
    return &radish;
}

Where “radish” is a Radish instance contained in RadishCont.

When I execute the python code I receive this exception:

TypeError: No Python class registered for C++ class Radish

So, my question is: how can I make this method work in python without rewriting RadishCont using SWIG ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T15:04:02+00:00Added an answer on May 26, 2026 at 3:04 pm

    At the end, I have done it.

    I have created a class instance in my boost python module like this:

    class_<Radish>("Radish");
    

    I have created a converter function like this:

    static void* radishConvert(PyObject* obj)
    {
        char thisStr[] = "this";
        //first we need to get the this attribute from the Python Object
        if (!PyObject_HasAttrString(obj, thisStr))
                return NULL;
    
        PyObject* thisAttr = PyObject_GetAttrString(obj, thisStr);
        if (thisAttr == NULL)
                return NULL;
        //This Python Object is a SWIG Wrapper and contains our pointer
        void* pointer = ((PySwigObject*)thisAttr)->ptr;
        Py_DECREF(thisAttr);
        return pointer;
    }
    

    Where PySwigObject is a struct like this:

    struct PySwigObject 
    {
        PyObject_HEAD 
        void * ptr;
        const char * desc;
    };
    

    Last, I have registered my converter:

    boost::python::converter::registry::insert(&radishConvert, type_id<Radish>());
    

    This perfectly works, I can get objects from SWIG and pass it to boost::python. The inverse process is still unsolved but is enough for me.

    This is the guide I have used to find the solution:
    http://wiki.python.org/moin/boost.python/HowTo#SWIG_exposed_C.2B-.2B-_object_from_Python

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

First, a little background (greatly simplified): I have two classes, one called Entity and
First I want to describe my situation briefly. I have two classes, one MainClass
I have two classes that each need an instance of each other to function.
I have a two classes, a controller called AppController and a class called URLDelegate
Say you have two assemblies (two dlls). The first contains a class called Base
I have been using three classes. Two classes extends the third class db. But
In my program I have two classes, one called GlassPiece, and one called TrackerChip.
I have created two classes that implement AuthorizeAttribute . One is used globally, and
I have two classes, and want to include a static instance of one class
I have two classes, Foo and Bar, that have constructors like this: class Foo

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.