Format code using clang-format

This commit is contained in:
Luis Ángel San Martín
2019-05-30 19:46:37 +02:00
parent e0eb94e3ae
commit e3ec56aa43
356 changed files with 19824 additions and 21874 deletions

View File

@ -5,26 +5,26 @@
class ResponseParser : public QObject
{
Q_OBJECT
Q_OBJECT
public:
explicit ResponseParser(QObject *parent = 0);
bool responseError();
explicit ResponseParser(QObject *parent = 0);
bool responseError();
QString errorDescription();
qint32 getNumResults();
qint32 getCurrentPage();
qint32 getTotalPages();
qint32 getNumResults();
qint32 getCurrentPage();
qint32 getTotalPages();
bool isError(qint32 error);
signals:
public slots:
void loadJSONResponse(const QString & response);
void loadJSONResponse(const QString &response);
protected:
bool error;
bool error;
QString errorTxt;
qint32 numResults;
qint32 currentPage;
qint32 totalPages;
qint32 numResults;
qint32 currentPage;
qint32 totalPages;
};
#endif // RESPONSE_PARSER_H