File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -140,13 +140,13 @@ class http_request {
140
140
* Method to get or create a file info struct in the map if the provided filename is already in the map
141
141
* return the exiting file info struct, otherwise create one in the map and return it.
142
142
* @param upload_file_name the file name the user uploaded (this is the identifier for the map entry)
143
- * @result a file info struct file_info_s
143
+ * @result a http::file_info
144
144
**/
145
145
http::file_info& get_or_create_file_info (const std::string& key, const std::string& upload_file_name);
146
146
147
147
/* *
148
148
* Method used to get all files passed with the request.
149
- * @result result a map<string, file_info_s > > that will be filled with all files
149
+ * @result result a map<std:: string, map<std::string, http::file_info > > that will be filled with all files
150
150
**/
151
151
const std::map<std::string, std::map<std::string, http::file_info>> get_files () const {
152
152
return files;
You can’t perform that action at this time.
0 commit comments