Renamed Ftp::ListingDirectory::getFilenames() to getListing()
This commit is contained in:
parent
49f37ee8b3
commit
c02e375399
3 changed files with 9 additions and 9 deletions
|
@ -232,19 +232,19 @@ public :
|
|||
ListingResponse(const Response& response, const std::vector<char>& data);
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
/// \brief Return the array of filenames
|
||||
/// \brief Return the array of directory/file names
|
||||
///
|
||||
/// \return Array containing the requested filenames
|
||||
/// \return Array containing the requested listing
|
||||
///
|
||||
////////////////////////////////////////////////////////////
|
||||
const std::vector<std::string>& getFilenames() const;
|
||||
const std::vector<std::string>& getListing() const;
|
||||
|
||||
private :
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
// Member data
|
||||
////////////////////////////////////////////////////////////
|
||||
std::vector<std::string> m_filenames; ///< Filenames extracted from the data
|
||||
std::vector<std::string> m_listing; ///< Directory/file names extracted from the data
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue