mirror of
https://github.com/MeexReay/minceraftOS.git
synced 2025-06-24 18:43:00 +03:00
23 lines
337 B
C++
23 lines
337 B
C++
#pragma once
|
|
#include "AuthFlow.h"
|
|
|
|
class LocalRefresh : public AuthFlow
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit LocalRefresh(
|
|
AccountData *data,
|
|
QObject *parent = 0
|
|
);
|
|
};
|
|
|
|
class LocalLogin : public AuthFlow
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit LocalLogin(
|
|
AccountData *data,
|
|
QObject *parent = 0
|
|
);
|
|
};
|