Delaring cusolverSpHandle_t in .h file

I am trying to move all of my declarations to a .h file. I can easily move my cublasHandle_t to my .h file but cusolverSpHandle_t is giving me an error that says

error: ‘cusolverSpHandle_t’ does not name a type

What am I missing?

the appropriate “#include <cusolverSp.h>” perhaps?

Boy that was silly!!!

Thanks again txbob. I totally spaced sticking my includes in my .h file. Program is happy now.