Talon SRX library not importing to eclipse c++

This is my include statement with the 4.4.1.14 Toolsuite

#include "TalonSRX.h" // 4.4.1.14 CRTE currently broken

Which is saying: fatal error: TalonSRX No such file or directory

But installing the 4.4.1.9 Toolsuite and using CANTalon.h fixes the problem.

#include "CANTalon.h" // 4.4.1.9 CTRE

Has anyone had this problem and know of any solutions. (Have tried multiple installs and removals with reboots in between)

The CTRE Toolsuite is now the CTRE Phoenix Framework.

https://wpilib.screenstepslive.com/s/currentCS/m/getting_started/l/801080-new-for-2018

See our documentation for instructions:

Specifically the installation instructions here:

I can guess you’ve probably solved it by now, but if not you can download the updated installer for CTRE TalonSRXs at the CTRE Website and use “#include <ctre/Phoenix.h>”. And the object has been changed to TalonSRX from CANTalon, but if you want to use it with WPILib Robotdrive and other things, you need to use WPI_TalonSRX.

Hope this helps!