mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-09-10 05:12:20 +08:00
19 lines
268 B
C++
19 lines
268 B
C++
|
|
#include "page/spkpagebase.h"
|
|
|
|
SpkPageBase::SpkPageBase(QWidget *parent) : QWidget(parent)
|
|
{
|
|
|
|
}
|
|
|
|
void SpkPageBase::ResourceAcquisitionFinished(int id, ResourceResult result)
|
|
{
|
|
Q_UNUSED(id);
|
|
Q_UNUSED(result);
|
|
}
|
|
|
|
void SpkPageBase::Activated()
|
|
{
|
|
; // Do nothing
|
|
}
|