Add prefix for NvLogLevel enum values

This commit is contained in:
Cameron Gutman
2019-01-19 21:32:35 -08:00
parent 75f631599c
commit e944c819d9
3 changed files with 13 additions and 13 deletions
+4 -4
View File
@@ -117,9 +117,9 @@ class NvHTTP
{
public:
enum NvLogLevel {
NONE,
ERROR,
VERBOSE
NVLL_NONE,
NVLL_ERROR,
NVLL_VERBOSE
};
explicit NvHTTP(QString address, QSslCertificate serverCert);
@@ -150,7 +150,7 @@ public:
QString command,
QString arguments,
int timeoutMs,
NvLogLevel logLevel = NvLogLevel::VERBOSE);
NvLogLevel logLevel = NvLogLevel::NVLL_VERBOSE);
void setServerCert(QSslCertificate serverCert);