I have created a C++ program and class, and plan to compile it to a library. I have found several websites explaining how to create and use wrappers to access the C++ class methods.
My environment is IAR EWARM which in my case I need to use standard C. To create class instantiated objects, I am using (or will need to use) operator "new", i.e., for class "scDev": bLink1 = new( scDev );
I have been searching for information on how to instantiate objects using the "new" operator from a C program, but unable to find how this can be accomplished.
Can someone provide some insight on how to go about this, perhaps an example or website link?
Thanks....Gary
