Hello!
Is there any documentation that describes how to make an xDAIS package containing just source code (i.e., no libraries)?
Basically, I implemented an IUNIVERSAL based algorithm in templated C++, because I want a generic typed implementation. However, obviously, the complier cannot generate code until the actual algorithm is referenced (i.e., used in other code -- e.g., the codec server). So, I am hoping that I can just package up the code that I wrote and reference that in our codec server and have it get compiled in as needed.
Otherwise, I am going to have to put C wrappers around each of my C++ class methods, which is work that I am hoping to avoid.
Have a great day!
Take care,
Darwin