Mohamed Amine Mzoughi

Results 58 comments of Mohamed Amine Mzoughi

`` is not needed as the class doesn't depend on Qt. I guess you are using QMake and not CMake, so for the LINUX or WINDOWS macros, you can define...

A better solution is to get rid off the macros WINDOWS and LINUX and use Visual Studio macro for Windows (and MinGW) and a GCC macro for Linux. There's plenty...

@nicmorais What build system do you use ? CMake or qmake ? Qt is now fully supporting CMake and will not use qmake in the future (CMake will be the...

@nicmorais if you search the web for this error, you will see that it's because GetProgressFnCallback definition works only with C++14, what you can do is to change auto to...

@nicmorais You are trying to compile some parts that should be hidden with "#ifdef WINDOWS" WINDOWS macro should not be defined ! I added some helpers for Windows users to...

And be careful when using this library with Qt (thread safety concerns) ! I have already made a discussion here : https://github.com/embeddedmz/ftpclient-cpp/issues/27

Thank you. I don't know 'Conan' (I do know vcpkg though) and I can't really find free time to take care of my github projects during these troubled times both...

Following your question, I have tested something to fix this, unfortunately, there are no simple solutions to solve this problem. We need to know the size of the folder (to...

@Bandler I think we will need a new method for that. The current DownloadWildcard method uses libcurl features and is complex. I prefer not to touch it. the best way...

It will not be simple to implement. I think threads are required to implement this feature like in vtkMap. In the latter, there's two layers (maps) one that is single...