Sorry for the delay. I finally made a small example. Here:
.hpp
#ifndef __SPACESHIP_HPP_
#define __SPACESHIP_HPP_
namespace Game
{
class SpaceShip
{
public:
SpaceShip();
};
}
#endif
.cpp
#include "SpaceShip.hpp"
namespace Game
{
SpaceShip::SpaceShip()
{
}
SpaceShip::Allo()
{
}
}
Now, on SpaceShip::Allo()
I use Refactor-> Create Declaration
This is now the .hpp
#ifndef __SPACESHIP_HPP_
#define __SPACESHIP_HPP_
namespace Game
{
class SpaceShip
{
public:
SpaceShip();
SpaceShip::Allo();
};
}
#endif
Where I want only Allo();
to be created.
Thank you.
Visual Assist X Version 10.5.1738.0