: : Hi!
: : I found an interesting library which I think I can find useful (specifically, nb++). The problem is, the library is implemented as a C++ class, and I program in C.
: :
: : The library doesn't seem to have any C bindings, and (not that I have a problem with C++) I don't want to spend the time learning another language just to use this library....
: :
: : Does anyone know if/how it's possible to use a C++ library in C without bindings?
: : Sincerely,
: : Jakykong (Jack Mudge)
: : jack_mudge@hotmail.com
: :
:
: Hmm, couldn't you make a wrapper, and then link it with you're project?:
:
:
: class{
: func()....
: }
:
: func(){
: class func
: ....
: }
:
:
: But that would require some C++ skills...
:
It's something like I was thinking....
The problem would be the C++ skills. I'm not against C++, I was just hoping I wouldn't have to spend the time to learn it :).
It might just be time for me to buy a good book on C++.
"You are coming to a sad realization. Allow or Deny?" "Allow."
Thanks for the help!
Sincerely,
Jakykong (Jack Mudge)
jack_mudge@hotmail.com