1) Go to implementation bug:
test.hpp
Code: Select all
class test
{
void foo(); //I select it, click go to implementation and nothing happens
//desired behaviour is to switch to .cpp file on the function implementation
};
Code: Select all
#include "test.hpp"
void test::foo()
{
//stuff
}
test.hpp
Code: Select all
class test
{
void foo(); //I select it, click add implementation and nothing happens
//desired behaviour is to add empty definition in .cpp file (or at least in clipboard). That would make my development just rapid.
};
Code: Select all
#include "test.hpp"
//empty file, just created and added to project (using create class wizard)