Igor R wrote:
template
class basic_vpath; typedef basic_vpath< std::string, path_traits> vpath; template
class basic_vpath :public basic_path< String, Traits> { }; But I don't understand why I can just fine: CString strUserDirectory= _T("C:\\cpp\\RA_User_2_2\\$(TEST)"); path aPath( strUserDirectory );
But can't convert from CString, or even std::string with:
CString strUserDirectory= _T("C:\\cpp\\RA_User_2_2\\$(TEST)"); vpath aPath( strUserDirectory );
Does vpath class have a constructor that takes CString or LPTCSTR?
Hi,
From what I see, basic_path will with < std::string, path_traits > (
from path.hpp). I'm deriving from basic_path and using that constructor.
This line 'looks' to work fine for path:
typedef basic_path< std::string, path_traits > path;
But I get the error:
'basic_vpath