adding missing method

This commit is contained in:
Daniel Larimer 2012-09-09 00:39:37 -04:00
parent 40bec5e112
commit 79c2c530e9

View file

@ -10,6 +10,8 @@ namespace fc {
path::path( const boost::filesystem::path& p )
:_p(p){}
path::path( const char* p )
:_p(p){}
path::path( const fc::string& p )
:_p(p.c_str()){}