need help with a managed c++ wrapper. noob

  • Thread starter Thread starter vidalsasoon
  • Start date Start date
V

vidalsasoon

I'm using a DLL that is a managed wrapper of a C++ dll. I have the
source code to this wrapper.

I think I found a bug so I want to snoop around the c++ code to see
what is happening.


In the managed dll there's a class with this signature:

public abstract class Slider : ODE.Joints.Joint


I have a feeling this class should not be abstract (other similar
classes are just regular class and I see no class that inherits it).


i'm looking at a zillion C++ files here and I just want to find where
this class was "wrapped" and hopefully unabstract it. any idea on where
to look?

I've searched the project for "Slider" and "Abstract" without any
obvious returns.
 
Back
Top