Does anyone know how to make a macro or something to switch between foo.hpp and foo.cpp? I would really appreciate having a macro like this. I guess it would help if it actually opened the corresponding file, but kept the old one in a tab.
Thanks
Does anyone know how to make a macro or something to switch between foo.hpp and foo.cpp? I would really appreciate having a macro like this. I guess it would help if it actually opened the corresponding file, but kept the old one in a tab.
Thanks
Perhaps one (or a combination) of the following will help you:
Why not use right click > Go to declaration | Go to definition?
The solution provided in Switch between a Header and a CPP File in .NET (a macro at codeproject) works well in VS2003 and 2005 but for some reasons it does not work with VS2008 (on my computer).
The solution provided in Switch between Source and Header C++ Files (A recent macro from codeguru) works perfectly.
Thanks.