mirror of
https://github.com/chenx-dust/EZ4Connect.git
synced 2026-09-20 10:23:33 +08:00
21 lines
283 B
C++
21 lines
283 B
C++
#ifndef DEVICETRUST_H
|
|
#define DEVICETRUST_H
|
|
|
|
#include <QString>
|
|
|
|
class QObject;
|
|
|
|
namespace DeviceTrust
|
|
{
|
|
void set(
|
|
QObject *parent,
|
|
const QString &protocol,
|
|
const QString &server,
|
|
int port,
|
|
const QString &profileId,
|
|
bool trusted
|
|
);
|
|
}
|
|
|
|
#endif // DEVICETRUST_H
|