Included XML files for the "pay to new number" and "pay to old number" features in the Ozon platform.
14 lines
259 B
C++
14 lines
259 B
C++
#pragma once
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
|
|
class AppLogger {
|
|
public:
|
|
static void log(
|
|
const QString &source,
|
|
const QString &deviceId,
|
|
const QString &message,
|
|
const QByteArray &screenshot = {}
|
|
);
|
|
};
|