mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
16 lines
275 B
C++
16 lines
275 B
C++
#ifndef SHARED_DISCARD_POP_UP_CONTROLLER_H
|
|
#define SHARED_DISCARD_POP_UP_CONTROLLER_H
|
|
|
|
#include <escher/pop_up_controller.h>
|
|
|
|
namespace Shared {
|
|
|
|
class DiscardPopUpController : public PopUpController {
|
|
public:
|
|
DiscardPopUpController(Invocation OkInvocation);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|