vote up 4 vote down star
2

I am using a library that has headers without the .h
This defeats visual studio's intellisense (declaration/definition lookup)

Anyone know how to tell VS2008 that a file is a header?

flag

2 Answers

vote up 4 vote down check

Go to Tools::Options::Text Editor::File Extension tab in Visual Studio. Check the "Map extensionless headers" checkbox, and select the language you want from the combobox.

link|flag
Excellent thanks very much, I knew there was an option somehwere - but in the text editor settings ????? – Martin Beckett Oct 16 '08 at 21:14
vote up 0 vote down

I'd hazard a guess that you should ensure the headers are included from a source file (usually a .cpp file).

Where the properties for the source file have the Tool property set to C/C++ Compiler Tool. I would guess Intellisense starts with them, and would follow #includes to files regardless of their extension to build its database of symbols from anything it encounters.

link|flag
The preprocessor handles thme fine (the #include command doesn't care) the problem is that the intelisense does it's own parsing and doesn't know they are headers. – Martin Beckett Oct 16 '08 at 21:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.