1
0
forked from BRT/arc
arc/database/dao/CommonDataDAO.h
trnsmkot 9fb9cf0005 Refactor UI and database logic for device management
Replaced `MyWindow` with `MainWindow` featuring dynamic device widgets. Introduced `DeviceInfo`, `DeviceDAO`, and improved database interaction. Added flow layout and refactored image handling for better performance.
2025-04-18 16:39:13 +07:00

12 lines
211 B
C++

#pragma once
#include <QString>
#include <QDateTime>
class CommonDataDAO {
public:
[[nodiscard]] static QDateTime getLastScan();
[[nodiscard]] static bool updateLastScan(const QDateTime &newTime);
};