diff options
author | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2022-10-30 12:05:26 +0100 |
---|---|---|
committer | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2022-10-30 12:05:26 +0100 |
commit | 2788f6d76bb9485bc800356424df210f0d6a86c7 (patch) | |
tree | d20cc0c2e516d1ec4c9a3b4658a3acb62aa04888 /client/dbconnector.h | |
parent | 8952e19f00e0930e53e3731fd30be5e2600d9fd6 (diff) |
changed dbConnector to settings window
Diffstat (limited to 'client/dbconnector.h')
-rw-r--r-- | client/dbconnector.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/dbconnector.h b/client/dbconnector.h index db8ac4e..4737d6f 100644 --- a/client/dbconnector.h +++ b/client/dbconnector.h @@ -6,6 +6,8 @@ //#include <QtSql> //#include <QSqlDatabase> +#define WS_ESP8266_WLAN_IP "129.168.0.1" + namespace Ui { class dbConnector; @@ -27,4 +29,8 @@ private slots: private: Ui::dbConnector *ui; + + QString _dbHost = "localhost"; + QString _dbName = "WSdb"; + QString _espHost = WS_ESP8266_WLAN_IP; }; |