1
0
forked from BRT/arc
arc/android/rshb/SyncAccountDataScript.cpp
trnsmkot 9b27f5e1dd Refactor account handling and add TutorialWindow feature
Removed redundant "numbers" field from Account model and database queries to simplify account structure. Introduced a TutorialWindow class for displaying application tutorials, integrated into the main window, and updated file paths accordingly. Improved string handling and logic in Payment routines and enhanced overall UI structure.
2025-05-23 19:25:02 +07:00

15 lines
303 B
C++

#include "SyncAccountDataScript.h"
SyncAccountDataScript::SyncAccountDataScript(
QString deviceId,
QObject *parent
) : CommonScript(parent),
m_deviceId(std::move(deviceId)) {
}
SyncAccountDataScript::~SyncAccountDataScript() = default;
void SyncAccountDataScript::doStart() {
// 1.
}