add access()

This commit is contained in:
t-h-i-s-u-s-e-r-n-a-m-e-i-s-c-a-n-c-e-r 2021-08-08 07:48:32 +02:00 committed by GitHub
parent af353b942e
commit a18ecfd633
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,6 +30,17 @@
#include <QSqlError>
#include <QSqlQuery>
#if defined(_WIN32)
#include <io.h>
#define access(pathname, mode) _access(pathname, mode)
#elif __unix__
#include <unistd.h>
#else
#define access(pathname, mode) 1
#endif
/**
* @brief A class used to handle database interaction.
*