* removed paths in include directives * changed cmake to provide necessary header search paths * changed name of version.h to productVersion.h due to name conflict
21 lines
274 B
C++
21 lines
274 B
C++
#include "RefreshController.h"
|
|
|
|
#include "RefreshView.h"
|
|
|
|
RefreshController::RefreshController()
|
|
{
|
|
}
|
|
|
|
RefreshController::~RefreshController()
|
|
{
|
|
}
|
|
|
|
void RefreshController::clear()
|
|
{
|
|
}
|
|
|
|
RefreshView* RefreshController::getView()
|
|
{
|
|
return Controller::getView<RefreshView>();
|
|
}
|