Renamed Ftp::ListingDirectory::getFilenames() to getListing()

This commit is contained in:
Laurent Gomila 2012-10-26 17:09:43 +02:00
parent 49f37ee8b3
commit c02e375399
3 changed files with 9 additions and 9 deletions

View file

@ -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
};