mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
11 lines
206 B
C++
11 lines
206 B
C++
#ifndef APPS_EXAM_POP_UP_CONTROLLER_DELEGATE_H
|
|
#define APPS_EXAM_POP_UP_CONTROLLER_DELEGATE_H
|
|
|
|
class ExamPopUpControllerDelegate {
|
|
public:
|
|
virtual void examDeactivatingPopUpIsDismissed() = 0;
|
|
};
|
|
|
|
#endif
|
|
|