String problem or bug

 

Hello, 

can't get a string member variable initialized.


///////////////////////////
/// my_pos 
///////////////////////////
class my_pos : public CPositionInfo
{
public:
    my_pos (string symbol="") : CPositionInfo()
    {
        _symbol=Symbol();
    }
public:
string _symbol;
};

 _symbol always empty.

 

What secret behind this ? 

Anybody can help ?

Thank you