3

I was wondering if it is possible to interface with GPIB Instruments by using C++ and Qt. If it is possible, can anyone tell me how easy it would be and/or point me in a direction for a tutorial or examples?

Thanks a lot.

Matthew Rankin
  • 457,139
  • 39
  • 126
  • 163
Live
  • 1,981
  • 16
  • 17

1 Answers1

3

Yes, it should be possible. Part of the package should be a 488.2 API for C programs, which you can also use from a C++ and/or Qt program. You may have to wrap the header file in extern "C", if there is no such line in the header file.

hmuelner
  • 8,093
  • 1
  • 28
  • 39