Rename all symbols to new project name

此提交包含在:
2021-06-12 14:59:58 +02:00
父節點 645903ed6b
當前提交 e97551be97
共有 26 個檔案被更改,包括 93 行新增93 行删除

查看文件

@@ -1,13 +1,13 @@
#ifndef QSSGENERALEXCEPTION_H
#define QSSGENERALEXCEPTION_H
#ifndef LOOQSGENERALEXCEPTION_H
#define LOOQSGENERALEXCEPTION_H
#include <QException>
class QSSGeneralException : public QException
class LooqsGeneralException : public QException
{
public:
QString message;
QSSGeneralException(QString message)
LooqsGeneralException(QString message)
{
this->message = message;
}
@@ -15,10 +15,10 @@ class QSSGeneralException : public QException
{
throw *this;
}
QSSGeneralException *clone() const override
LooqsGeneralException *clone() const override
{
return new QSSGeneralException(*this);
return new LooqsGeneralException(*this);
}
};
#endif // QSSGENERALEXCEPTION_H
#endif // LOOQSGENERALEXCEPTION_H