dumbchemistry
dumbchemistry

Reputation: 403

Enabling IntelliSense in Visual Studio 2013 Express for C++ files with irregular extensions (e.g. .tpp)

I am implementing a class template in Visual Studio 2013 Express with a header and implementation file. However, my implementation file (which has a .tpp extension) does not have IntelliSense enabled. Is there any way to enable C++ IntelliSense for this file?

Upvotes: 7

Views: 2209

Answers (1)

Aykhan Hagverdili
Aykhan Hagverdili

Reputation: 29985

Tools->Options->Text Editor->File Extensions. At least for syntax-highlighting, for compilation considerations, add them to the xml of the project or right click them and select and in the properties select the Item Type C/C++ Compiler.

PeterT Nov 9 '14 at 22:45

Upvotes: 4

Related Questions