mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-02-21 17:20:37 +02:00
12 lines
226 B
C
12 lines
226 B
C
![]() |
#ifndef UTILS_H
|
||
|
#define UTILS_H
|
||
|
|
||
|
#include <QtCore>
|
||
|
#include <QRegExp>
|
||
|
|
||
|
bool fileExists(QString path);
|
||
|
QString getAccountName();
|
||
|
const static QRegExp reURI = QRegExp("^\\w+:\\/\\/([\\w+\\-?\\-_\\-=\\-&]+)");
|
||
|
|
||
|
#endif // UTILS_H
|