22 lines
327 B
C++
22 lines
327 B
C++
#ifndef REFRESH_CONTROLLER_H
|
|
#define REFRESH_CONTROLLER_H
|
|
|
|
#include "component/controller/Controller.h"
|
|
|
|
class RefreshView;
|
|
|
|
class RefreshController
|
|
: public Controller
|
|
{
|
|
public:
|
|
RefreshController();
|
|
virtual ~RefreshController();
|
|
|
|
virtual void clear();
|
|
|
|
private:
|
|
RefreshView* getView();
|
|
};
|
|
|
|
#endif // REFRESH_CONTROLLER_H
|