added blob type (progress)

This commit is contained in:
2024-01-22 07:11:35 +01:00
parent b158b41556
commit 102a7fc604
24 changed files with 240 additions and 149 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef QUERY_UTILS_TYPES_HPP
#define QUERY_UTILS_TYPES_HPP
#include <vector>
namespace matador::utils {
using byte = unsigned char;
using blob = std::vector<byte>;
}
#endif //QUERY_UTILS_TYPES_HPP