21 lines
310 B
C++
21 lines
310 B
C++
#include "component/controller/RefreshController.h"
|
|
|
|
#include "component/view/RefreshView.h"
|
|
|
|
RefreshController::RefreshController()
|
|
{
|
|
}
|
|
|
|
RefreshController::~RefreshController()
|
|
{
|
|
}
|
|
|
|
void RefreshController::clear()
|
|
{
|
|
}
|
|
|
|
RefreshView* RefreshController::getView()
|
|
{
|
|
return Controller::getView<RefreshView>();
|
|
}
|