From d3f11e3b7b86eda4733ece84294d9dc8da1d23bc Mon Sep 17 00:00:00 2001 From: Daniil Rozanov Date: Wed, 5 Jul 2023 03:11:34 +0300 Subject: Added declaration of connection class with connect and execute members. Created detail and impl folder. Created one example's file --- include/ftp/error_code.hpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 include/ftp/error_code.hpp (limited to 'include/ftp/error_code.hpp') diff --git a/include/ftp/error_code.hpp b/include/ftp/error_code.hpp new file mode 100644 index 0000000..a3f789f --- /dev/null +++ b/include/ftp/error_code.hpp @@ -0,0 +1,10 @@ +#ifndef _ERROR_CODE_HPP +#define _ERROR_CODE_HPP + +#include + +namespace ftp { +using error_code = boost::system::error_code; +} + +#endif // !_ERROR_CODE_HPP -- cgit v1.2.3