04-11-2017 01:23 PM
Hi,
I have a c++ dll created in Qt5 library.
1-) How to use in TestStand?
2-) Is there a problem using stl container(vector, list, map etc...) as a function parameter?
3-) Should I try calling only static function(C++) from TestStand?
4-) Is there a directory where it explains?
Thanks for any help
04-11-2017 11:28 PM - edited 04-11-2017 11:30 PM
Please remobe, wrong answer.
04-12-2017
10:17 AM
- last edited on
11-01-2024
07:20 PM
by
Content Cleaner
If you're looking to use a container, I'd expect this to fall under a custom data type. You can find some documentation here: https://www.ni.com/docs/en-US/bundle/teststand/page/creating-custom-data-types.html
For your third question, that's also another route you can take. You can look at wrapping up your troublesome calls into a c++ function that uses more common parameters and let it handle the container within. But, that seems like extra work versus creating the custom data type.