1 #ifndef __DFTPD__STRING_HPP__
2 #define __DFTPD__STRING_HPP__
7 typedef std::vector
<std::string
> PathVector
;
8 typedef std::vector
<std::string
> Command
;
9 typedef std::vector
<std::string
> PortVector
;
11 PathVector
SplitPath( const std::string
& str
);
12 PortVector
SplitPort( const std::string
& str
);
13 Command
Split( const std::string
& str
);
14 Command
ParseCommand( const std::string
& cmd
);
15 void ToUpper( std::string
& str
);