C++ - external header file in a class

A DAC (Data acquisition Card)came with its high level functions. One of them is DigitalIO() and its header file if ljacklm.h

if I use #include "ljacklm.h" and in the main function use DigitalIO(), I am able to compile the code with no error.
-----------------

I want to use DigitalIO() inside the processloop() which is a function member of a class called "process".

In process.h file I add #include "ljacklm.h" and in the processloop() function I called DigitalIO(). I am getting "undefined reference to DigitalIO".

How to properly reference to DigitalIO?

Thank you
Topic archived. No new replies allowed.