I just "moved" from C # to C ++ / CLR. At first it annoyed me that I had to write class declarations twice (in .h and .cpp). Then I realized that I can put the code in h files - it compiles at least. Well, I deleted all the cpp of my classes, and now I realized: VS will not give me Intellisense when I work on my h files.
I think I should not put my code in hfiles (the code will not be reused in other projects for sure), but I am terrified to configure all method declarations in two places ... Plus I need to switch back and forth to find out which modifier is my method etc., and it’s not very good in one place, like in C # (with it the pros and cons).
I'm sorry this is a newbie question, but I just wanted to make sure there was no way to enable intellisense for hfiles. Or at least find out that I'm completely wrong ...
Thanks David
David source
share